blob: 3f641732224821f1221c4fbc6ae510c3420878fb (
plain) (
tree)
|
|
/**
* \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::aes::Block plaintext;
make_default_plaintext(plaintext);
aesni::aes::Key128 key;
make_default_key(key);
aesni::aes::Block iv;
make_default_iv(iv);
aesni::aes::RoundKeys128 encryption_schedule;
aesni_aes128_expand_key(&key, &encryption_schedule);
dump_encryption_schedule(encryption_schedule);
const auto ciphertext = aesni_aes128_encrypt_block_ctr(plaintext, &encryption_schedule, iv, 0);
dump_ciphertext(ciphertext);
const auto decrypted = aesni_aes128_decrypt_block_ctr(ciphertext, &encryption_schedule, iv, 0);
dump_decrypted(decrypted);
return 0;
}
catch (const std::exception& e)
{
std::cerr << e.what() << "\n";
return 1;
}
}
|