blob: d999f81d5e29cd2fd68357626fe640ffc179832f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/**
* \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::RoundKeys128 encryption_keys;
aesni_aes128_expand_key(&key, &encryption_keys);
dump_encryption_keys(encryption_keys);
const auto ciphertext = aesni_aes128_encrypt_block_ecb(plaintext, &encryption_keys);
dump_ciphertext(ciphertext);
aesni::aes::RoundKeys128 decryption_keys;
aesni_aes128_derive_decryption_keys(&encryption_keys, &decryption_keys);
dump_decryption_keys(decryption_keys);
const auto decrypted = aesni_aes128_decrypt_block_ecb(ciphertext, &decryption_keys);
dump_decrypted(decrypted);
return 0;
}
catch (const aesni::Error& e)
{
std::cerr << e;
return 1;
}
catch (const std::exception& e)
{
std::cerr << e.what() << "\n";
return 1;
}
}
|