diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-17 21:09:42 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-17 21:09:42 +0300 |
commit | 8430473494fcdbf39e02fcff80d51124df728e97 (patch) | |
tree | ba2a30c419e2d2e9fdd05ff697d98e24f1ef1876 /test/aes128ofb_encrypt_block.c | |
parent | factoring out AES-specific stuff (diff) | |
download | aes-tools-8430473494fcdbf39e02fcff80d51124df728e97.tar.gz aes-tools-8430473494fcdbf39e02fcff80d51124df728e97.zip |
refactoring
Diffstat (limited to '')
-rw-r--r-- | test/aes128ofb_encrypt_block.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/aes128ofb_encrypt_block.c b/test/aes128ofb_encrypt_block.c index 4532cc8..3911cf7 100644 --- a/test/aes128ofb_encrypt_block.c +++ b/test/aes128ofb_encrypt_block.c @@ -22,8 +22,8 @@ int main(int argc, char** argv) { for (--argc, ++argv; argc > -1; --argc, ++argv) { - AesNI_Block128 plain, key, cipher, iv; - AesNI_Aes128_RoundKeys key_schedule; + AesNI_Block128 plaintext, key, ciphertext, iv; + AesNI_Aes128_RoundKeys encryption_keys; if (argc < 2) exit_with_usage(); @@ -40,20 +40,20 @@ int main(int argc, char** argv) exit_with_usage(); } - aesni_aes128_expand_key(key, &key_schedule); + aesni_aes128_expand_key(key, &encryption_keys); for (argc -= 2, argv += 2; argc > 0; --argc, ++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_aes128_encrypt_block_ofb(plain, &key_schedule, iv, &iv); - aesni_print_block128(&cipher, NULL); + ciphertext = aesni_aes128_encrypt_block_ofb(plaintext, &encryption_keys, iv, &iv); + aesni_print_block128(&ciphertext, NULL); } } |