diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-16 20:49:10 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-16 20:49:10 +0300 |
commit | 3ddcdb338778dcb46190cce759df54fcf592dc46 (patch) | |
tree | f97474b9331665fbd5de334e5d8de7622885c195 /examples/aes192ofb.cpp | |
parent | cxx: include data structures & I/O functions (diff) | |
download | aes-tools-3ddcdb338778dcb46190cce759df54fcf592dc46.tar.gz aes-tools-3ddcdb338778dcb46190cce759df54fcf592dc46.zip |
examples: C++/libaesnixx instead of C/libaes
Diffstat (limited to 'examples/aes192ofb.cpp')
-rw-r--r-- | examples/aes192ofb.cpp | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/examples/aes192ofb.cpp b/examples/aes192ofb.cpp new file mode 100644 index 0000000..5a07278 --- /dev/null +++ b/examples/aes192ofb.cpp @@ -0,0 +1,51 @@ +/** + * \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::Block192 key; + make_default_key(key); + + aesni::Block128 iv; + make_default_iv(iv); + + aesni::KeySchedule192 encryption_schedule; + aesni_expand_key_schedule192(&key, &encryption_schedule); + dump_encryption_schedule(encryption_schedule); + + aesni::Block128 next_iv; + const auto ciphertext = aesni_encrypt_block_ofb192(plaintext, &encryption_schedule, iv, &next_iv); + dump_ciphertext(ciphertext); + dump_next_iv(next_iv); + + const auto decrypted = aesni_decrypt_block_ofb192(ciphertext, &encryption_schedule, iv, &next_iv); + dump_decrypted(decrypted); + dump_next_iv(next_iv); + + return 0; + } + catch (const std::exception& e) + { + std::cerr << e.what() << "\n"; + return 1; + } +} |