|
Botan
1.11.15
|
#include <mars.h>
Public Types | |
| enum | |
| typedef SCAN_Name | Spec |
Public Member Functions | |
| size_t | block_size () const |
| void | clear () |
| BlockCipher * | clone () const |
| void | decrypt (const byte in[], byte out[]) const |
| void | decrypt (byte block[]) const |
| template<typename Alloc > | |
| void | decrypt (std::vector< byte, Alloc > &block) const |
| template<typename Alloc , typename Alloc2 > | |
| void | decrypt (const std::vector< byte, Alloc > &in, std::vector< byte, Alloc2 > &out) const |
| void | decrypt_n (const byte in[], byte out[], size_t blocks) const |
| void | encrypt (const byte in[], byte out[]) const |
| void | encrypt (byte block[]) const |
| template<typename Alloc > | |
| void | encrypt (std::vector< byte, Alloc > &block) const |
| template<typename Alloc , typename Alloc2 > | |
| void | encrypt (const std::vector< byte, Alloc > &in, std::vector< byte, Alloc2 > &out) const |
| void | encrypt_n (const byte in[], byte out[], size_t blocks) const |
| Key_Length_Specification | key_spec () const |
| size_t | maximum_keylength () const |
| size_t | minimum_keylength () const |
| std::string | name () const |
| size_t | parallel_bytes () const |
| virtual size_t | parallelism () const |
| void | set_key (const SymmetricKey &key) |
| template<typename Alloc > | |
| void | set_key (const std::vector< byte, Alloc > &key) |
| void | set_key (const byte key[], size_t length) |
| bool | valid_keylength (size_t length) const |
typedef SCAN_Name Botan::BlockCipher::Spec [inherited] |
Definition at line 22 of file block_cipher.h.
anonymous enum [inherited] |
Definition at line 153 of file block_cipher.h.
{ BLOCK_SIZE = BS };
| size_t Botan::Block_Cipher_Fixed_Params< BS, KMIN, KMAX, KMOD >::block_size | ( | ) | const [inline, virtual, inherited] |
Implements Botan::BlockCipher.
Definition at line 154 of file block_cipher.h.
{ return BS; }
| void Botan::MARS::clear | ( | ) | [virtual] |
Implements Botan::SymmetricAlgorithm.
Definition at line 389 of file mars.cpp.
References Botan::zap().
{
zap(EK);
}
| BlockCipher* Botan::MARS::clone | ( | ) | const [inline, virtual] |
Implements Botan::BlockCipher.
Definition at line 26 of file mars.h.
{ return new MARS; }
| void Botan::BlockCipher::decrypt | ( | const byte | in[], |
| byte | out[] | ||
| ) | const [inline, inherited] |
Decrypt a block.
| in | The ciphertext block to be decypted as a byte array. Must be of length block_size(). |
| out | The byte array designated to hold the decrypted block. Must be of length block_size(). |
Definition at line 59 of file block_cipher.h.
Referenced by Botan::Camellia_128::decrypt_n(), Botan::DESX::decrypt_n(), Botan::Camellia_192::decrypt_n(), Botan::Camellia_256::decrypt_n(), Botan::XTS_Decryption::finish(), and Botan::CTS_Decryption::finish().
{ decrypt_n(in, out, 1); }
| void Botan::BlockCipher::decrypt | ( | byte | block[] | ) | const [inline, inherited] |
Decrypt a block.
| block | the ciphertext block to be decrypted Must be of length block_size(). Will hold the result when the function has finished. |
Definition at line 76 of file block_cipher.h.
{ decrypt_n(block, block, 1); }
| void Botan::BlockCipher::decrypt | ( | std::vector< byte, Alloc > & | block | ) | const [inline, inherited] |
Decrypt one or more blocks
| block | the input/output buffer (multiple of block_size()) |
Definition at line 93 of file block_cipher.h.
{
return decrypt_n(&block[0], &block[0], block.size() / block_size());
}
| void Botan::BlockCipher::decrypt | ( | const std::vector< byte, Alloc > & | in, |
| std::vector< byte, Alloc2 > & | out | ||
| ) | const [inline, inherited] |
Decrypt one or more blocks
| in | the input buffer (multiple of block_size()) |
| out | the output buffer (same size as in) |
Definition at line 116 of file block_cipher.h.
{
return decrypt_n(&in[0], &out[0], in.size() / block_size());
}
| void Botan::MARS::decrypt_n | ( | const byte | in[], |
| byte | out[], | ||
| size_t | blocks | ||
| ) | const [virtual] |
Decrypt one or more blocks
| in | the input buffer (multiple of block_size()) |
| out | the output buffer (same size as in) |
| blocks | the number of blocks to process |
Implements Botan::BlockCipher.
Definition at line 279 of file mars.cpp.
References Botan::Block_Cipher_Fixed_Params< 16, 16, 32, 4 >::BLOCK_SIZE, Botan::load_le< u32bit >(), and Botan::store_le().
{
for(size_t i = 0; i != blocks; ++i)
{
u32bit A = load_le<u32bit>(in, 3) + EK[39];
u32bit B = load_le<u32bit>(in, 2) + EK[38];
u32bit C = load_le<u32bit>(in, 1) + EK[37];
u32bit D = load_le<u32bit>(in, 0) + EK[36];
forward_mix(A, B, C, D);
decrypt_round(A, B, C, D, EK[35], EK[34]);
decrypt_round(B, C, D, A, EK[33], EK[32]);
decrypt_round(C, D, A, B, EK[31], EK[30]);
decrypt_round(D, A, B, C, EK[29], EK[28]);
decrypt_round(A, B, C, D, EK[27], EK[26]);
decrypt_round(B, C, D, A, EK[25], EK[24]);
decrypt_round(C, D, A, B, EK[23], EK[22]);
decrypt_round(D, A, B, C, EK[21], EK[20]);
decrypt_round(A, D, C, B, EK[19], EK[18]);
decrypt_round(B, A, D, C, EK[17], EK[16]);
decrypt_round(C, B, A, D, EK[15], EK[14]);
decrypt_round(D, C, B, A, EK[13], EK[12]);
decrypt_round(A, D, C, B, EK[11], EK[10]);
decrypt_round(B, A, D, C, EK[ 9], EK[ 8]);
decrypt_round(C, B, A, D, EK[ 7], EK[ 6]);
decrypt_round(D, C, B, A, EK[ 5], EK[ 4]);
reverse_mix(A, B, C, D);
A -= EK[3]; B -= EK[2]; C -= EK[1]; D -= EK[0];
store_le(out, D, C, B, A);
in += BLOCK_SIZE;
out += BLOCK_SIZE;
}
}
| void Botan::BlockCipher::encrypt | ( | const byte | in[], |
| byte | out[] | ||
| ) | const [inline, inherited] |
Encrypt a block.
| in | The plaintext block to be encrypted as a byte array. Must be of length block_size(). |
| out | The byte array designated to hold the encrypted block. Must be of length block_size(). |
Definition at line 49 of file block_cipher.h.
Referenced by Botan::aont_package(), Botan::aont_unpackage(), Botan::DESX::encrypt_n(), Botan::Camellia_128::encrypt_n(), Botan::Camellia_192::encrypt_n(), Botan::Camellia_256::encrypt_n(), Botan::XTS_Encryption::finish(), Botan::CTS_Encryption::finish(), Botan::CBC_Encryption::update(), Botan::CFB_Encryption::update(), and Botan::CFB_Decryption::update().
{ encrypt_n(in, out, 1); }
| void Botan::BlockCipher::encrypt | ( | byte | block[] | ) | const [inline, inherited] |
Encrypt a block.
| block | the plaintext block to be encrypted Must be of length block_size(). Will hold the result when the function has finished. |
Definition at line 68 of file block_cipher.h.
{ encrypt_n(block, block, 1); }
| void Botan::BlockCipher::encrypt | ( | std::vector< byte, Alloc > & | block | ) | const [inline, inherited] |
Encrypt one or more blocks
| block | the input/output buffer (multiple of block_size()) |
Definition at line 83 of file block_cipher.h.
{
return encrypt_n(&block[0], &block[0], block.size() / block_size());
}
| void Botan::BlockCipher::encrypt | ( | const std::vector< byte, Alloc > & | in, |
| std::vector< byte, Alloc2 > & | out | ||
| ) | const [inline, inherited] |
Encrypt one or more blocks
| in | the input buffer (multiple of block_size()) |
| out | the output buffer (same size as in) |
Definition at line 104 of file block_cipher.h.
{
return encrypt_n(&in[0], &out[0], in.size() / block_size());
}
| void Botan::MARS::encrypt_n | ( | const byte | in[], |
| byte | out[], | ||
| size_t | blocks | ||
| ) | const [virtual] |
Encrypt one or more blocks
| in | the input buffer (multiple of block_size()) |
| out | the output buffer (same size as in) |
| blocks | the number of blocks to process |
Implements Botan::BlockCipher.
Definition at line 236 of file mars.cpp.
References Botan::Block_Cipher_Fixed_Params< 16, 16, 32, 4 >::BLOCK_SIZE, Botan::load_le< u32bit >(), and Botan::store_le().
{
for(size_t i = 0; i != blocks; ++i)
{
u32bit A = load_le<u32bit>(in, 0) + EK[0];
u32bit B = load_le<u32bit>(in, 1) + EK[1];
u32bit C = load_le<u32bit>(in, 2) + EK[2];
u32bit D = load_le<u32bit>(in, 3) + EK[3];
forward_mix(A, B, C, D);
encrypt_round(A, B, C, D, EK[ 4], EK[ 5]);
encrypt_round(B, C, D, A, EK[ 6], EK[ 7]);
encrypt_round(C, D, A, B, EK[ 8], EK[ 9]);
encrypt_round(D, A, B, C, EK[10], EK[11]);
encrypt_round(A, B, C, D, EK[12], EK[13]);
encrypt_round(B, C, D, A, EK[14], EK[15]);
encrypt_round(C, D, A, B, EK[16], EK[17]);
encrypt_round(D, A, B, C, EK[18], EK[19]);
encrypt_round(A, D, C, B, EK[20], EK[21]);
encrypt_round(B, A, D, C, EK[22], EK[23]);
encrypt_round(C, B, A, D, EK[24], EK[25]);
encrypt_round(D, C, B, A, EK[26], EK[27]);
encrypt_round(A, D, C, B, EK[28], EK[29]);
encrypt_round(B, A, D, C, EK[30], EK[31]);
encrypt_round(C, B, A, D, EK[32], EK[33]);
encrypt_round(D, C, B, A, EK[34], EK[35]);
reverse_mix(A, B, C, D);
A -= EK[36]; B -= EK[37]; C -= EK[38]; D -= EK[39];
store_le(out, A, B, C, D);
in += BLOCK_SIZE;
out += BLOCK_SIZE;
}
}
| Key_Length_Specification Botan::Block_Cipher_Fixed_Params< BS, KMIN, KMAX, KMOD >::key_spec | ( | ) | const [inline, virtual, inherited] |
Implements Botan::SymmetricAlgorithm.
Definition at line 156 of file block_cipher.h.
{
return Key_Length_Specification(KMIN, KMAX, KMOD);
}
| size_t Botan::SymmetricAlgorithm::maximum_keylength | ( | ) | const [inline, inherited] |
Definition at line 36 of file sym_algo.h.
References Botan::Key_Length_Specification::maximum_keylength().
{
return key_spec().maximum_keylength();
}
| size_t Botan::SymmetricAlgorithm::minimum_keylength | ( | ) | const [inline, inherited] |
Definition at line 44 of file sym_algo.h.
{
return key_spec().minimum_keylength();
}
| std::string Botan::MARS::name | ( | ) | const [inline, virtual] |
| size_t Botan::BlockCipher::parallel_bytes | ( | ) | const [inline, inherited] |
Definition at line 37 of file block_cipher.h.
Referenced by Botan::XTS_Mode::update_granularity(), Botan::ECB_Mode::update_granularity(), and Botan::CBC_Mode::update_granularity().
{
return parallelism() * block_size() * BOTAN_BLOCK_CIPHER_PAR_MULT;
}
| virtual size_t Botan::BlockCipher::parallelism | ( | ) | const [inline, virtual, inherited] |
Reimplemented in Botan::AES_256_NI, Botan::AES_192_NI, Botan::AES_128_NI, Botan::IDEA_SSE2, Botan::Noekeon_SIMD, Botan::Serpent_SIMD, and Botan::XTEA_SIMD.
Definition at line 32 of file block_cipher.h.
{ return 1; }
| void Botan::SymmetricAlgorithm::set_key | ( | const SymmetricKey & | key | ) | [inline, inherited] |
Set the symmetric key of this object.
| key | the SymmetricKey to be set. |
Definition at line 63 of file sym_algo.h.
References Botan::OctetString::begin(), and Botan::OctetString::length().
Referenced by Botan::aont_package(), Botan::aont_unpackage(), botan_mac_set_key(), Botan::TLS::Session::decrypt(), Botan::TLS::Session::encrypt(), and Botan::pbkdf2().
{
set_key(key.begin(), key.length());
}
| void Botan::SymmetricAlgorithm::set_key | ( | const std::vector< byte, Alloc > & | key | ) | [inline, inherited] |
Definition at line 69 of file sym_algo.h.
{
set_key(&key[0], key.size());
}
| void Botan::SymmetricAlgorithm::set_key | ( | const byte | key[], |
| size_t | length | ||
| ) | [inline, inherited] |
Set the symmetric key of this object.
| key | the to be set as a byte array. |
| length | in bytes of key param |
Definition at line 79 of file sym_algo.h.
{
if(!valid_keylength(length))
throw Invalid_Key_Length(name(), length);
key_schedule(key, length);
}
| bool Botan::SymmetricAlgorithm::valid_keylength | ( | size_t | length | ) | const [inline, inherited] |
Check whether a given key length is valid for this algorithm.
| length | the key length to be checked. |
Definition at line 54 of file sym_algo.h.
Referenced by Botan::aont_package(), and Botan::aont_unpackage().
{
return key_spec().valid_keylength(length);
}
1.7.6.1