Mercurial > dropbear
comparison libtomcrypt/demos/tv_gen.c @ 1739:13d834efc376 fuzz
merge from main
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 15 Oct 2020 19:55:15 +0800 |
parents | e9dba7abd939 |
children |
comparison
equal
deleted
inserted
replaced
1562:768ebf737aa0 | 1739:13d834efc376 |
---|---|
76 } | 76 } |
77 if ((err = cipher_descriptor[x].keysize(&kl)) != CRYPT_OK) { | 77 if ((err = cipher_descriptor[x].keysize(&kl)) != CRYPT_OK) { |
78 printf("keysize error: %s\n", error_to_string(err)); | 78 printf("keysize error: %s\n", error_to_string(err)); |
79 exit(EXIT_FAILURE); | 79 exit(EXIT_FAILURE); |
80 } | 80 } |
81 if (kl == lastkl) break; | 81 if (kl == lastkl) continue; |
82 lastkl = kl; | 82 lastkl = kl; |
83 fprintf(out, "Key Size: %d bytes\n", kl); | 83 fprintf(out, "Key Size: %d bytes\n", kl); |
84 | 84 |
85 key = XMALLOC(kl); | 85 key = XMALLOC(kl); |
86 if (key == NULL) { | 86 if (key == NULL) { |