aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/aes256ecb.cpp
blob: 72f132e054fde640239b293c02f0cfd5b79f72b9 (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
/**
 * \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::Block256 key;
        make_default_key(key);

        aesni::KeySchedule256 encryption_schedule;
        aesni_expand_key_schedule256(&key, &encryption_schedule);
        dump_encryption_schedule(encryption_schedule);

        const auto ciphertext = aesni_encrypt_block_ecb256(plaintext, &encryption_schedule);
        dump_ciphertext(ciphertext);

        aesni::KeySchedule256 decryption_schedule;
        aesni_invert_key_schedule256(&encryption_schedule, &decryption_schedule);
        dump_decryption_schedule(decryption_schedule);

        const auto decrypted = aesni_decrypt_block_ecb256(ciphertext, &decryption_schedule);
        dump_decrypted(decrypted);

        return 0;
    }
    catch (const std::exception& e)
    {
        std::cerr << e.what() << "\n";
        return 1;
    }
}