aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/aes192cfb_decrypt_block.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/aes192cfb_decrypt_block.c')
-rw-r--r--test/aes192cfb_decrypt_block.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/aes192cfb_decrypt_block.c b/test/aes192cfb_decrypt_block.c
index 4bd04bd..b5703d1 100644
--- a/test/aes192cfb_decrypt_block.c
+++ b/test/aes192cfb_decrypt_block.c
@@ -24,7 +24,7 @@ int main(int argc, char** argv)
{
AesNI_Block128 plain, cipher, iv;
AesNI_Block192 key;
- AesNI_KeySchedule192 key_schedule;
+ AesNI_Aes192_RoundKeys key_schedule;
if (argc < 2)
exit_with_usage();
@@ -41,7 +41,7 @@ int main(int argc, char** argv)
exit_with_usage();
}
- aesni_expand_key_schedule192(&key, &key_schedule);
+ aesni_aes192_expand_key(&key, &key_schedule);
for (argc -= 2, argv += 2; argc > 0; --argc, ++argv)
{
@@ -53,7 +53,7 @@ int main(int argc, char** argv)
fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv);
continue;
}
- plain = aesni_decrypt_block_cfb192(cipher, &key_schedule, iv, &iv);
+ plain = aesni_aes192_decrypt_block_cfb(cipher, &key_schedule, iv, &iv);
aesni_print_block128(&plain, NULL);
}
}