aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/examples/aes256cbc.cpp
blob: c5ab4276f63b10ad89d5f3b8d401a129829bfd0d (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::Key256 key;
        make_default_key(key);

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

        aesni::aes::RoundKeys256 encryption_keys;
        aesni_aes256_expand_key(&key, &encryption_keys);
        dump_encryption_keys(encryption_keys);

        aesni::aes::Block next_iv;
        const auto ciphertext = aesni_aes256_encrypt_block_cbc(plaintext, &encryption_keys, iv, &next_iv);
        dump_ciphertext(ciphertext);
        dump_next_iv(next_iv);

        aesni::aes::RoundKeys256 decryption_keys;
        aesni_aes256_derive_decryption_keys(&encryption_keys, &decryption_keys);
        dump_decryption_keys(decryption_keys);

        const auto decrypted = aesni_aes256_decrypt_block_cbc(ciphertext, &decryption_keys, iv, &next_iv);
        dump_decrypted(decrypted);
        dump_next_iv(next_iv);

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