aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/aes128ctr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/aes128ctr.cpp')
-rw-r--r--examples/aes128ctr.cpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/examples/aes128ctr.cpp b/examples/aes128ctr.cpp
new file mode 100644
index 0000000..a02052c
--- /dev/null
+++ b/examples/aes128ctr.cpp
@@ -0,0 +1,48 @@
+/**
+ * \file
+ * \author Egor Tensin <Egor.Tensin@gmail.com>
+ * \date 2015
+ * \copyright This file is licensed under the terms of the MIT License.
+ * See LICENSE.txt for details.
+ */
+
+#include "common.hpp"
+
+#include <aesni/all.h>
+
+#include <aesnixx/all.hpp>
+
+#include <exception>
+#include <iostream>
+
+int main()
+{
+ try
+ {
+ aesni::Block128 plaintext;
+ make_default_plaintext(plaintext);
+
+ aesni::Block128 key;
+ make_default_key(key);
+
+ aesni::Block128 iv;
+ make_default_iv(iv);
+
+ aesni::KeySchedule128 encryption_schedule;
+ aesni_expand_key_schedule128(key, &encryption_schedule);
+ dump_encryption_schedule(encryption_schedule);
+
+ const auto ciphertext = aesni_encrypt_block_ctr128(plaintext, &encryption_schedule, iv, 0);
+ dump_ciphertext(ciphertext);
+
+ const auto decrypted = aesni_decrypt_block_ctr128(ciphertext, &encryption_schedule, iv, 0);
+ dump_decrypted(decrypted);
+
+ return 0;
+ }
+ catch (const std::exception& e)
+ {
+ std::cerr << e.what() << "\n";
+ return 1;
+ }
+}