diff options
Diffstat (limited to '')
-rw-r--r-- | test/aes256ctr_decrypt_block.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/aes256ctr_decrypt_block.c b/test/aes256ctr_decrypt_block.c index 7923f4c..e2669e6 100644 --- a/test/aes256ctr_decrypt_block.c +++ b/test/aes256ctr_decrypt_block.c @@ -29,13 +29,13 @@ int main(int argc, char** argv) if (argc < 2) exit_with_usage(); - if (aesni_parse_block256(&key, *argv) != 0) + if (aesni_is_error(aesni_parse_block256(&key, *argv, NULL))) { fprintf(stderr, "Invalid 256-bit AES block '%s'\n", *argv); exit_with_usage(); } - if (aesni_parse_block128(&iv, argv[1]) != 0) + if (aesni_is_error(aesni_parse_block128(&iv, argv[1], NULL))) { fprintf(stderr, "Invalid 128-bit AES block '%s'\n", argv[1]); exit_with_usage(); @@ -50,7 +50,7 @@ int main(int argc, char** argv) if (strcmp("--", *argv) == 0) break; - if (aesni_parse_block128(&cipher, *argv) != 0) + if (aesni_is_error(aesni_parse_block128(&cipher, *argv, NULL))) { fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv); continue; |