aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2015-06-19 01:29:53 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2015-06-19 01:29:53 +0300
commita483e9bd8a7efe3fbad0f0c8ec70d9f5041d86b2 (patch)
tree2b067b04a87a26f68b9a92f40b891c4ff9ddbdda /examples
parentadd more block arithmetic functions (diff)
downloadaes-tools-a483e9bd8a7efe3fbad0f0c8ec70d9f5041d86b2.tar.gz
aes-tools-a483e9bd8a7efe3fbad0f0c8ec70d9f5041d86b2.zip
respect the generic interface in CTR functions
Diffstat (limited to '')
-rw-r--r--examples/aes128ctr.cpp7
-rw-r--r--examples/aes192ctr.cpp7
-rw-r--r--examples/aes256ctr.cpp7
3 files changed, 15 insertions, 6 deletions
diff --git a/examples/aes128ctr.cpp b/examples/aes128ctr.cpp
index 671a5f3..ebd8793 100644
--- a/examples/aes128ctr.cpp
+++ b/examples/aes128ctr.cpp
@@ -32,11 +32,14 @@ int main()
aesni_aes128_expand_key(&key, &encryption_keys);
dump_encryption_keys(encryption_keys);
- const auto ciphertext = aesni_aes128_encrypt_block_ctr(plaintext, &encryption_keys, iv, 0);
+ aesni::aes::Block next_iv;
+ const auto ciphertext = aesni_aes128_encrypt_block_ctr(plaintext, &encryption_keys, iv, &next_iv);
dump_ciphertext(ciphertext);
+ dump_next_iv(next_iv);
- const auto decrypted = aesni_aes128_decrypt_block_ctr(ciphertext, &encryption_keys, iv, 0);
+ const auto decrypted = aesni_aes128_decrypt_block_ctr(ciphertext, &encryption_keys, iv, &next_iv);
dump_decrypted(decrypted);
+ dump_next_iv(next_iv);
return 0;
}
diff --git a/examples/aes192ctr.cpp b/examples/aes192ctr.cpp
index bdd34cf..d53cb38 100644
--- a/examples/aes192ctr.cpp
+++ b/examples/aes192ctr.cpp
@@ -32,11 +32,14 @@ int main()
aesni_aes192_expand_key(&key, &encryption_keys);
dump_encryption_keys(encryption_keys);
- const auto ciphertext = aesni_aes192_encrypt_block_ctr(plaintext, &encryption_keys, iv, 0);
+ aesni::aes::Block next_iv;
+ const auto ciphertext = aesni_aes192_encrypt_block_ctr(plaintext, &encryption_keys, iv, &next_iv);
dump_ciphertext(ciphertext);
+ dump_next_iv(next_iv);
- const auto decrypted = aesni_aes192_decrypt_block_ctr(ciphertext, &encryption_keys, iv, 0);
+ const auto decrypted = aesni_aes192_decrypt_block_ctr(ciphertext, &encryption_keys, iv, &next_iv);
dump_decrypted(decrypted);
+ dump_next_iv(next_iv);
}
catch (const std::exception& e)
{
diff --git a/examples/aes256ctr.cpp b/examples/aes256ctr.cpp
index c27d177..1431992 100644
--- a/examples/aes256ctr.cpp
+++ b/examples/aes256ctr.cpp
@@ -32,11 +32,14 @@ int main()
aesni_aes256_expand_key(&key, &encryption_keys);
dump_encryption_keys(encryption_keys);
- const auto ciphertext = aesni_aes256_encrypt_block_ctr(plaintext, &encryption_keys, iv, 0);
+ aesni::aes::Block next_iv;
+ const auto ciphertext = aesni_aes256_encrypt_block_ctr(plaintext, &encryption_keys, iv, &next_iv);
dump_ciphertext(ciphertext);
+ dump_next_iv(next_iv);
- const auto decrypted = aesni_aes256_decrypt_block_ctr(ciphertext, &encryption_keys, iv, 0);
+ const auto decrypted = aesni_aes256_decrypt_block_ctr(ciphertext, &encryption_keys, iv, &next_iv);
dump_decrypted(decrypted);
+ dump_next_iv(next_iv);
}
catch (const std::exception& e)
{