aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/aes256cbc_encrypt_block.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--test/aes256cbc_encrypt_block.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/aes256cbc_encrypt_block.c b/test/aes256cbc_encrypt_block.c
index cb3be83..9c0c24b 100644
--- a/test/aes256cbc_encrypt_block.c
+++ b/test/aes256cbc_encrypt_block.c
@@ -24,7 +24,7 @@ int main(int argc, char** argv)
{
AesNI_Block128 plain, cipher, iv;
AesNI_Block256 key;
- AesNI_KeySchedule256 key_schedule;
+ AesNI_Aes256_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_schedule256(&key, &key_schedule);
+ aesni_aes256_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;
}
- cipher = aesni_encrypt_block_cbc256(plain, &key_schedule, iv, &iv);
+ cipher = aesni_aes256_encrypt_block_cbc(plain, &key_schedule, iv, &iv);
aesni_print_block128(&cipher, NULL);
}
}