aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/examples/aes128cfb.cpp
blob: a8bbb03c5fbd2eaa995331047d3619b3f4222e3d (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_keys;
        aesni_aes128_expand_key(&key, &encryption_keys);
        dump_encryption_keys(encryption_keys);

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

        const auto decrypted = aesni_aes128_decrypt_block_cfb(ciphertext, &encryption_keys, iv, &next_iv);
        dump_decrypted(decrypted);
        dump_next_iv(next_iv);

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