aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/examples/aes192ctr.cpp
blob: bdd34cf96f10d3d05a83fb6272e45fbf84217cfa (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::Key192 key;
        make_default_key(key);

        aesni::aes::Block iv;
        make_default_iv(iv);

        aesni::aes::RoundKeys192 encryption_keys;
        aesni_aes192_expand_key(&key, &encryption_keys);
        dump_encryption_keys(encryption_keys);

        const auto ciphertext = aesni_aes192_encrypt_block_ctr(plaintext, &encryption_keys, iv, 0);
        dump_ciphertext(ciphertext);

        const auto decrypted = aesni_aes192_decrypt_block_ctr(ciphertext, &encryption_keys, iv, 0);
        dump_decrypted(decrypted);
    }
    catch (const std::exception& e)
    {
        std::cerr << e.what() << "\n";
        return 1;
    }

    return 0;
}