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/aes256cfb.cpp | |
parent | cxx: implement more stuff (diff) | |
download | aes-tools-c61bfd12a935bea47526f360b3e6dc3c4550f94d.tar.gz aes-tools-c61bfd12a935bea47526f360b3e6dc3c4550f94d.zip |
code style
Diffstat (limited to 'examples/aes256cfb.cpp')
-rw-r--r-- | examples/aes256cfb.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/aes256cfb.cpp b/examples/aes256cfb.cpp index a6e8ba7..599392c 100644 --- a/examples/aes256cfb.cpp +++ b/examples/aes256cfb.cpp @@ -28,16 +28,16 @@ int main() aesni::aes::Block iv; make_default_iv(iv); - aesni::aes::RoundKeys256 encryption_schedule; - aesni_aes256_expand_key(&key, &encryption_schedule); - dump_encryption_schedule(encryption_schedule); + aesni::aes::RoundKeys256 encryption_keys; + aesni_aes256_expand_key(&key, &encryption_keys); + dump_encryption_keys(encryption_keys); aesni::aes::Block next_iv; - const auto ciphertext = aesni_aes256_encrypt_block_cfb(plaintext, &encryption_schedule, iv, &next_iv); + const auto ciphertext = aesni_aes256_encrypt_block_cfb(plaintext, &encryption_keys, iv, &next_iv); dump_ciphertext(ciphertext); dump_next_iv(next_iv); - const auto decrypted = aesni_aes256_decrypt_block_cfb(ciphertext, &encryption_schedule, iv, &next_iv); + const auto decrypted = aesni_aes256_decrypt_block_cfb(ciphertext, &encryption_keys, iv, &next_iv); dump_decrypted(decrypted); dump_next_iv(next_iv); |