diff options
Diffstat (limited to 'test/aes192cfb_encrypt_block.c')
-rw-r--r-- | test/aes192cfb_encrypt_block.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/aes192cfb_encrypt_block.c b/test/aes192cfb_encrypt_block.c index a23aa72..40214d8 100644 --- a/test/aes192cfb_encrypt_block.c +++ b/test/aes192cfb_encrypt_block.c @@ -22,9 +22,9 @@ int main(int argc, char** argv) { for (--argc, ++argv; argc > -1; --argc, ++argv) { - AesNI_Block128 plain, cipher, iv; + AesNI_Block128 plaintext, ciphertext, iv; AesNI_Block192 key; - AesNI_Aes192_RoundKeys key_schedule; + AesNI_Aes192_RoundKeys encryption_keys; if (argc < 2) exit_with_usage(); @@ -41,20 +41,20 @@ int main(int argc, char** argv) exit_with_usage(); } - aesni_aes192_expand_key(&key, &key_schedule); + aesni_aes192_expand_key(&key, &encryption_keys); for (argc -= 2, argv += 2; argc > 0; --argc, ++argv) { if (strcmp("--", *argv) == 0) break; - if (aesni_is_error(aesni_parse_block128(&plain, *argv, NULL))) + if (aesni_is_error(aesni_parse_block128(&plaintext, *argv, NULL))) { fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv); continue; } - cipher = aesni_aes192_encrypt_block_cfb(plain, &key_schedule, iv, &iv); - aesni_print_block128(&cipher, NULL); + ciphertext = aesni_aes192_encrypt_block_cfb(plaintext, &encryption_keys, iv, &iv); + aesni_print_block128(&ciphertext, NULL); } } |