aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/aes192ofb_decrypt_block.c
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-11 01:15:14 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-11 01:15:14 +0300
commit7c14e13c717c25818780ff4cc459d82a2ec0473a (patch)
treeb03d3b5149c43334052c1a4e423df9025544bdd5 /test/aes192ofb_decrypt_block.c
parentfix register usage in the asm implementation (diff)
downloadaes-tools-7c14e13c717c25818780ff4cc459d82a2ec0473a.tar.gz
aes-tools-7c14e13c717c25818780ff4cc459d82a2ec0473a.zip
refactoring
Diffstat (limited to '')
-rw-r--r--test/aes192ofb_decrypt_block.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/aes192ofb_decrypt_block.c b/test/aes192ofb_decrypt_block.c
index 4044435..2f830e1 100644
--- a/test/aes192ofb_decrypt_block.c
+++ b/test/aes192ofb_decrypt_block.c
@@ -14,7 +14,7 @@
static void exit_with_usage()
{
- puts("Usage: aes192ofb_decrypt_block.exe KEY0 IV0 [CIPHER0...] [-- KEY1 IV1 [CIPHER1...]...]");
+ puts("Usage: aesni_decrypt_block_ofb192.exe KEY0 IV0 [CIPHER0...] [-- KEY1 IV1 [CIPHER1...]...]");
exit(EXIT_FAILURE);
}
@@ -22,39 +22,39 @@ int main(int argc, char** argv)
{
for (--argc, ++argv; argc > -1; --argc, ++argv)
{
- AesBlock128 plain, cipher, iv;
- AesBlock192 key;
- Aes192KeySchedule key_schedule;
+ AesNI_Block128 plain, cipher, iv;
+ AesNI_Block192 key;
+ AesNI_KeySchedule192 key_schedule;
if (argc < 2)
exit_with_usage();
- if (parse_aes_block192(&key, *argv) != 0)
+ if (aesni_parse_block192(&key, *argv) != 0)
{
fprintf(stderr, "Invalid 192-bit AES block '%s'\n", *argv);
exit_with_usage();
}
- if (parse_aes_block128(&iv, argv[1]) != 0)
+ if (aesni_parse_block128(&iv, argv[1]) != 0)
{
fprintf(stderr, "Invalid 128-bit AES block '%s'\n", argv[1]);
exit_with_usage();
}
- aes192_expand_key_schedule(&key, &key_schedule);
+ aesni_expand_key_schedule192(&key, &key_schedule);
for (argc -= 2, argv += 2; argc > 0; --argc, ++argv)
{
if (strcmp("--", *argv) == 0)
break;
- if (parse_aes_block128(&cipher, *argv) != 0)
+ if (aesni_parse_block128(&cipher, *argv) != 0)
{
fprintf(stderr, "Invalid 128-bit AES block '%s'\n", *argv);
continue;
}
- plain = aes192ofb_decrypt_block(cipher, &key_schedule, iv, &iv);
- print_aes_block128(&plain);
+ plain = aesni_decrypt_block_ofb192(cipher, &key_schedule, iv, &iv);
+ aesni_print_block128(&plain);
}
}