diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-18 19:46:46 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-18 19:46:46 +0300 |
commit | c61bfd12a935bea47526f360b3e6dc3c4550f94d (patch) | |
tree | 2e1d9be1fb12c0eecbf84fc016e5418f83dd1485 /examples/aes192ctr.cpp | |
parent | cxx: implement more stuff (diff) | |
download | aes-tools-c61bfd12a935bea47526f360b3e6dc3c4550f94d.tar.gz aes-tools-c61bfd12a935bea47526f360b3e6dc3c4550f94d.zip |
code style
Diffstat (limited to '')
-rw-r--r-- | examples/aes192ctr.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/aes192ctr.cpp b/examples/aes192ctr.cpp index 022bc33..bdd34cf 100644 --- a/examples/aes192ctr.cpp +++ b/examples/aes192ctr.cpp @@ -28,14 +28,14 @@ int main() aesni::aes::Block iv; make_default_iv(iv); - aesni::aes::RoundKeys192 encryption_schedule; - aesni_aes192_expand_key(&key, &encryption_schedule); - dump_encryption_schedule(encryption_schedule); + aesni::aes::RoundKeys192 encryption_keys; + aesni_aes192_expand_key(&key, &encryption_keys); + dump_encryption_keys(encryption_keys); - const auto ciphertext = aesni_aes192_encrypt_block_ctr(plaintext, &encryption_schedule, iv, 0); + const auto ciphertext = aesni_aes192_encrypt_block_ctr(plaintext, &encryption_keys, iv, 0); dump_ciphertext(ciphertext); - const auto decrypted = aesni_aes192_decrypt_block_ctr(ciphertext, &encryption_schedule, iv, 0); + const auto decrypted = aesni_aes192_decrypt_block_ctr(ciphertext, &encryption_keys, iv, 0); dump_decrypted(decrypted); } catch (const std::exception& e) |