aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/aes256ctr_encrypt_block.c
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-17 21:09:42 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-17 21:09:42 +0300
commit8430473494fcdbf39e02fcff80d51124df728e97 (patch)
treeba2a30c419e2d2e9fdd05ff697d98e24f1ef1876 /test/aes256ctr_encrypt_block.c
parentfactoring out AES-specific stuff (diff)
downloadaes-tools-8430473494fcdbf39e02fcff80d51124df728e97.tar.gz
aes-tools-8430473494fcdbf39e02fcff80d51124df728e97.zip
refactoring
Diffstat (limited to 'test/aes256ctr_encrypt_block.c')
-rw-r--r--test/aes256ctr_encrypt_block.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/aes256ctr_encrypt_block.c b/test/aes256ctr_encrypt_block.c
index 580c6e7..c0452f1 100644
--- a/test/aes256ctr_encrypt_block.c
+++ b/test/aes256ctr_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_Block256 key;
- AesNI_Aes256_RoundKeys key_schedule;
+ AesNI_Aes256_RoundKeys encryption_keys;
if (argc < 2)
exit_with_usage();
@@ -41,7 +41,7 @@ int main(int argc, char** argv)
exit_with_usage();
}
- aesni_aes256_expand_key(&key, &key_schedule);
+ aesni_aes256_expand_key(&key, &encryption_keys);
int ctr = 0;
@@ -50,13 +50,13 @@ int main(int argc, char** 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_aes256_encrypt_block_ctr(plain, &key_schedule, iv, ctr++);
- aesni_print_block128(&cipher, NULL);
+ ciphertext = aesni_aes256_encrypt_block_ctr(plaintext, &encryption_keys, iv, ctr++);
+ aesni_print_block128(&ciphertext, NULL);
}
}