aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/aes192cbc_encrypt_block.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/aes192cbc_encrypt_block.c')
-rw-r--r--test/aes192cbc_encrypt_block.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/aes192cbc_encrypt_block.c b/test/aes192cbc_encrypt_block.c
index 8df44e2..c7df499 100644
--- a/test/aes192cbc_encrypt_block.c
+++ b/test/aes192cbc_encrypt_block.c
@@ -23,19 +23,19 @@ int main(int argc, char** argv)
for (--argc, ++argv; argc > -1; --argc, ++argv)
{
AesNI_Block128 plaintext, ciphertext, iv;
- AesNI_Block192 key;
+ AesNI_Aes192_Key key;
AesNI_Aes192_RoundKeys encryption_keys;
if (argc < 2)
exit_with_usage();
- if (aesni_is_error(aesni_parse_block192(&key, *argv, NULL)))
+ if (aesni_is_error(aesni_aes192_parse_key(&key, *argv, NULL)))
{
fprintf(stderr, "Invalid 192-bit AES block '%s'\n", *argv);
exit_with_usage();
}
- if (aesni_is_error(aesni_parse_block128(&iv, argv[1], NULL)))
+ if (aesni_is_error(aesni_aes_parse_block(&iv, argv[1], NULL)))
{
fprintf(stderr, "Invalid 128-bit AES block '%s'\n", argv[1]);
exit_with_usage();
@@ -48,13 +48,13 @@ int main(int argc, char** argv)
if (strcmp("--", *argv) == 0)
break;
- if (aesni_is_error(aesni_parse_block128(&plaintext, *argv, NULL)))
+ if (aesni_is_error(aesni_aes_parse_block(&plaintext, *argv, NULL)))
{
fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv);
continue;
}
ciphertext = aesni_aes192_encrypt_block_cbc(plaintext, &encryption_keys, iv, &iv);
- aesni_print_block128(&ciphertext, NULL);
+ aesni_aes_print_block(&ciphertext, NULL);
}
}