/** * \file * \author Egor Tensin * \date 2015 * \copyright This file is licensed under the terms of the MIT License. * See LICENSE.txt for details. */ #pragma once #include "algorithm.hpp" #include "data.hpp" #include "mode.hpp" #include #include namespace aesni { namespace aes { typedef AesNI_AES_Block Block; typedef AesNI_AES128_Key Key128; typedef AesNI_AES192_Key Key192; typedef AesNI_AES256_Key Key256; inline void make_block(Block& dest, int hi3, int hi2, int lo1, int lo0) { aesni_AES_make_block(&dest, hi3, hi2, lo1, lo0); } inline void make_key(Key128& dest, int hi3, int hi2, int lo1, int lo0) { aesni_AES128_make_key(&dest, hi3, hi2, lo1, lo0); } inline void make_key(Key192& dest, int hi5, int hi4, int hi3, int lo2, int lo1, int lo0) { aesni_AES192_make_key(&dest, hi5, hi4, hi3, lo2, lo1, lo0); } inline void make_key(Key256& dest, int hi7, int hi6, int hi5, int hi4, int lo3, int lo2, int lo1, int lo0) { aesni_AES256_make_key(&dest, hi7, hi6, hi5, hi4, lo3, lo2, lo1, lo0); } std::string to_string(const Block& block) { AesNI_AES_BlockString str; aesni_AES_format_block(&str, &block, ErrorDetailsThrowsInDestructor()); return std::string(str.str); } std::string to_matrix_string(const Block& block) { AesNI_AES_BlockMatrixString str; aesni_AES_format_block_as_matrix(&str, &block, ErrorDetailsThrowsInDestructor()); return std::string(str.str); } inline void from_string(Block& dest, const char* src) { aesni_AES_parse_block(&dest, src, ErrorDetailsThrowsInDestructor()); } inline void from_string(Block& dest, const std::string& src) { from_string(dest, src.c_str()); } std::string to_string(const Key128& block) { AesNI_AES128_KeyString str; aesni_AES128_format_key(&str, &block, ErrorDetailsThrowsInDestructor()); return std::string(str.str); } std::string to_string(const Key192& block) { AesNI_AES192_KeyString str; aesni_AES192_format_key(&str, &block, ErrorDetailsThrowsInDestructor()); return std::string(str.str); } std::string to_string(const Key256& block) { AesNI_AES256_KeyString str; aesni_AES256_format_key(&str, &block, ErrorDetailsThrowsInDestructor()); return std::string(str.str); } inline void from_string(Key128& dest, const char* src) { aesni_AES128_parse_key(&dest, src, ErrorDetailsThrowsInDestructor()); } inline void from_string(Key192& dest, const char* src) { aesni_AES192_parse_key(&dest, src, ErrorDetailsThrowsInDestructor()); } inline void from_string(Key256& dest, const char* src) { aesni_AES256_parse_key(&dest, src, ErrorDetailsThrowsInDestructor()); } inline void from_string(Key128& dest, const std::string& src) { return from_string(dest, src.c_str()); } inline void from_string(Key192& dest, const std::string& src) { return from_string(dest, src.c_str()); } inline void from_string(Key256& dest, const std::string& src) { return from_string(dest, src.c_str()); } typedef AesNI_AES128_RoundKeys RoundKeys128; typedef AesNI_AES192_RoundKeys RoundKeys192; typedef AesNI_AES256_RoundKeys RoundKeys256; template inline std::size_t get_number_of_rounds(const RoundKeysT& round_keys) { return sizeof(round_keys) / sizeof(Block128); } inline void expand_key( const Key128& key, RoundKeys128& encryption_keys) { aesni_AES128_expand_key(&key, &encryption_keys); } inline void expand_key( const Key192& key, RoundKeys192& encryption_keys) { aesni_AES192_expand_key(&key, &encryption_keys); } inline void expand_key( const Key256& key, RoundKeys256& encryption_keys) { aesni_AES256_expand_key(&key, &encryption_keys); } inline void derive_decryption_keys( const RoundKeys128& encryption_keys, RoundKeys128& decryption_keys) { aesni_AES128_derive_decryption_keys( &encryption_keys, &decryption_keys); } inline void derive_decryption_keys( const RoundKeys192& encryption_keys, RoundKeys192& decryption_keys) { aesni_AES192_derive_decryption_keys( &encryption_keys, &decryption_keys); } inline void derive_decryption_keys( const RoundKeys256& encryption_keys, RoundKeys256& decryption_keys) { aesni_AES256_derive_decryption_keys( &encryption_keys, &decryption_keys); } inline Block encrypt_ecb( const Block& plaintext, const RoundKeys128& encryption_keys) { return aesni_AES128_encrypt_block_ECB(plaintext, &encryption_keys); } inline Block decrypt_ecb( const Block& ciphertext, const RoundKeys128& decryption_keys) { return aesni_AES128_decrypt_block_ECB(ciphertext, &decryption_keys); } inline Block encrypt_cbc( const Block& plaintext, const RoundKeys128& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES128_encrypt_block_CBC(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_cbc( const Block& ciphertext, const RoundKeys128& decryption_keys, const Block& iv, Block& next_iv) { return aesni_AES128_decrypt_block_CBC(ciphertext, &decryption_keys, iv, &next_iv); } inline Block encrypt_cfb( const Block& plaintext, const RoundKeys128& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES128_encrypt_block_CFB(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_cfb( const Block& ciphertext, const RoundKeys128& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES128_decrypt_block_CFB(ciphertext, &encryption_keys, iv, &next_iv); } inline Block encrypt_ofb( const Block& plaintext, const RoundKeys128& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES128_encrypt_block_OFB(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_ofb( const Block& ciphertext, const RoundKeys128& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES128_decrypt_block_OFB(ciphertext, &encryption_keys, iv, &next_iv); } inline Block encrypt_ctr( const Block& plaintext, const RoundKeys128& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES128_encrypt_block_CTR(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_ctr( const Block& ciphertext, const RoundKeys128& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES128_decrypt_block_CTR(ciphertext, &encryption_keys, iv, &next_iv); } inline Block encrypt_ecb( const Block& plaintext, const RoundKeys192& encryption_keys) { return aesni_AES192_encrypt_block_ECB(plaintext, &encryption_keys); } inline Block decrypt_ecb( const Block& ciphertext, const RoundKeys192& decryption_keys) { return aesni_AES192_decrypt_block_ECB(ciphertext, &decryption_keys); } inline Block encrypt_cbc( const Block& plaintext, const RoundKeys192& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES192_encrypt_block_CBC(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_cbc( const Block& ciphertext, const RoundKeys192& decryption_keys, const Block& iv, Block& next_iv) { return aesni_AES192_decrypt_block_CBC(ciphertext, &decryption_keys, iv, &next_iv); } inline Block encrypt_cfb( const Block& plaintext, const RoundKeys192& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES192_encrypt_block_CFB(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_cfb( const Block& ciphertext, const RoundKeys192& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES192_decrypt_block_CFB(ciphertext, &encryption_keys, iv, &next_iv); } inline Block encrypt_ofb( const Block& plaintext, const RoundKeys192& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES192_encrypt_block_OFB(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_ofb( const Block& ciphertext, const RoundKeys192& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES192_decrypt_block_OFB(ciphertext, &encryption_keys, iv, &next_iv); } inline Block encrypt_ctr( const Block& plaintext, const RoundKeys192& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES192_encrypt_block_CTR(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_ctr( const Block& ciphertext, const RoundKeys192& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES192_decrypt_block_CTR(ciphertext, &encryption_keys, iv, &next_iv); } inline Block encrypt_ecb( const Block& plaintext, const RoundKeys256& encryption_keys) { return aesni_AES256_encrypt_block_ECB(plaintext, &encryption_keys); } inline Block decrypt_ecb( const Block& ciphertext, const RoundKeys256& decryption_keys) { return aesni_AES256_decrypt_block_ECB(ciphertext, &decryption_keys); } inline Block encrypt_cbc( const Block& plaintext, const RoundKeys256& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES256_encrypt_block_CBC(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_cbc( const Block& ciphertext, const RoundKeys256& decryption_keys, const Block& iv, Block& next_iv) { return aesni_AES256_decrypt_block_CBC(ciphertext, &decryption_keys, iv, &next_iv); } inline Block encrypt_cfb( const Block& plaintext, const RoundKeys256& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES256_encrypt_block_CFB(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_cfb( const Block& ciphertext, const RoundKeys256& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES256_decrypt_block_CFB(ciphertext, &encryption_keys, iv, &next_iv); } inline Block encrypt_ofb( const Block& plaintext, const RoundKeys256& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES256_encrypt_block_OFB(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_ofb( const Block& ciphertext, const RoundKeys256& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES256_decrypt_block_OFB(ciphertext, &encryption_keys, iv, &next_iv); } inline Block encrypt_ctr( const Block& plaintext, const RoundKeys256& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES256_encrypt_block_CTR(plaintext, &encryption_keys, iv, &next_iv); } inline Block decrypt_ctr( const Block& ciphertext, const RoundKeys256& encryption_keys, const Block& iv, Block& next_iv) { return aesni_AES256_decrypt_block_CTR(ciphertext, &encryption_keys, iv, &next_iv); } template struct Types; template <> struct Types { typedef aesni::aes::Block BlockT; typedef aesni::aes::Key128 KeyT; typedef aesni::aes::RoundKeys128 RoundKeysT; }; template <> struct Types { typedef aesni::aes::Block BlockT; typedef aesni::aes::Key192 KeyT; typedef aesni::aes::RoundKeys192 RoundKeysT; }; template <> struct Types { typedef aesni::aes::Block BlockT; typedef aesni::aes::Key256 KeyT; typedef aesni::aes::RoundKeys256 RoundKeysT; }; template struct Encrypt; template struct Encrypt { Encrypt(const typename Types::KeyT& key, const typename Types::BlockT& iv) { expand_key(key, encryption_keys); derive_decryption_keys(encryption_keys, decryption_keys); } inline typename Types::BlockT encrypt(const typename Types::BlockT& plaintext) { return encrypt_ecb(plaintext, encryption_keys); } inline typename Types::BlockT decrypt(const typename Types::BlockT& ciphertext) { return decrypt_ecb(ciphertext, decryption_keys); } typename Types::RoundKeysT encryption_keys; typename Types::RoundKeysT decryption_keys; }; template struct Encrypt { Encrypt(const typename Types::KeyT& key, const typename Types::BlockT& iv) : iv(iv) { expand_key(key, encryption_keys); derive_decryption_keys(encryption_keys, decryption_keys); } inline typename Types::BlockT encrypt(const typename Types::BlockT& plaintext) { return encrypt_cbc(plaintext, encryption_keys, iv, iv); } inline typename Types::BlockT decrypt(const typename Types::BlockT& ciphertext) { return decrypt_cbc(ciphertext, decryption_keys, iv, iv); } typename Types::BlockT iv; typename Types::RoundKeysT encryption_keys; typename Types::RoundKeysT decryption_keys; }; template struct Encrypt { Encrypt(const typename Types::KeyT& key, const typename Types::BlockT& iv) : iv(iv) { expand_key(key, encryption_keys); } inline typename Types::BlockT encrypt(const typename Types::BlockT& plaintext) { return encrypt_cfb(plaintext, encryption_keys, iv, iv); } inline typename Types::BlockT decrypt(const typename Types::BlockT& ciphertext) { return decrypt_cfb(ciphertext, encryption_keys, iv, iv); } typename Types::BlockT iv; typename Types::RoundKeysT encryption_keys; }; template struct Encrypt { Encrypt(const typename Types::KeyT& key, const typename Types::BlockT& iv) : iv(iv) { expand_key(key, encryption_keys); } inline typename Types::BlockT encrypt(const typename Types::BlockT& plaintext) { return encrypt_ofb(plaintext, encryption_keys, iv, iv); } inline typename Types::BlockT decrypt(const typename Types::BlockT& ciphertext) { return decrypt_ofb(ciphertext, encryption_keys, iv, iv); } typename Types::BlockT iv; typename Types::RoundKeysT encryption_keys; }; template struct Encrypt { Encrypt(const typename Types::KeyT& key, const typename Types::BlockT& iv) : iv(iv) { expand_key(key, encryption_keys); } inline typename Types::BlockT encrypt(const typename Types::BlockT& plaintext) { return encrypt_ctr(plaintext, encryption_keys, iv, iv); } inline typename Types::BlockT decrypt(const typename Types::BlockT& ciphertext) { return decrypt_ctr(ciphertext, encryption_keys, iv, iv); } typename Types::RoundKeysT encryption_keys; typename Types::BlockT iv; }; } }