aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/aes256ofb.cpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-17 18:29:40 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-17 18:29:40 +0300
commit0651133db30c0932877780c2f98901e4ca1072e1 (patch)
tree2b87823b4b9f4b5a75affa4b1606abb06a598c97 /examples/aes256ofb.cpp
parentfactor out 128-bit XORing (diff)
downloadaes-tools-0651133db30c0932877780c2f98901e4ca1072e1.tar.gz
aes-tools-0651133db30c0932877780c2f98901e4ca1072e1.zip
refactoring
Diffstat (limited to 'examples/aes256ofb.cpp')
-rw-r--r--examples/aes256ofb.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/aes256ofb.cpp b/examples/aes256ofb.cpp
index 34f9725..cf1f1a0 100644
--- a/examples/aes256ofb.cpp
+++ b/examples/aes256ofb.cpp
@@ -29,15 +29,15 @@ int main()
make_default_iv(iv);
aesni::KeySchedule256 encryption_schedule;
- aesni_expand_key_schedule256(&key, &encryption_schedule);
+ aesni_aes256_expand_key(&key, &encryption_schedule);
dump_encryption_schedule(encryption_schedule);
aesni::Block128 next_iv;
- const auto ciphertext = aesni_encrypt_block_ofb256(plaintext, &encryption_schedule, iv, &next_iv);
+ const auto ciphertext = aesni_aes256_encrypt_block_ofb(plaintext, &encryption_schedule, iv, &next_iv);
dump_ciphertext(ciphertext);
dump_next_iv(next_iv);
- const auto decrypted = aesni_decrypt_block_ofb256(ciphertext, &encryption_schedule, iv, &next_iv);
+ const auto decrypted = aesni_aes256_decrypt_block_ofb(ciphertext, &encryption_schedule, iv, &next_iv);
dump_decrypted(decrypted);
dump_next_iv(next_iv);