Botan 3.0.0-alpha0
Crypto and TLS for C&
|
#include <eax.h>
Public Member Functions | |
virtual bool | associated_data_requires_key () const |
bool | authenticated () const |
void | clear () override |
size_t | default_nonce_length () const override |
EAX_Decryption (std::unique_ptr< BlockCipher > cipher, size_t tag_size=0) | |
void | finish (secure_vector< uint8_t > &final_block, size_t offset=0) override |
Key_Length_Specification | key_spec () const override |
virtual size_t | maximum_associated_data_inputs () const |
size_t | maximum_keylength () const |
size_t | minimum_final_size () const override |
size_t | minimum_keylength () const |
std::string | name () const override final |
size_t | output_length (size_t input_length) const override |
size_t | process (uint8_t buf[], size_t size) override |
virtual std::string | provider () const |
void | reset () override |
template<typename Alloc > | |
void | set_ad (const std::vector< uint8_t, Alloc > &ad) |
void | set_associated_data (const uint8_t ad[], size_t ad_len) override |
virtual void | set_associated_data_n (size_t i, const uint8_t ad[], size_t ad_len) |
template<typename Alloc > | |
void | set_associated_data_vec (const std::vector< uint8_t, Alloc > &ad) |
template<typename Alloc > | |
void | set_key (const std::vector< uint8_t, Alloc > &key) |
void | set_key (const SymmetricKey &key) |
void | set_key (const uint8_t key[], size_t length) |
void | start () |
template<typename Alloc > | |
void | start (const std::vector< uint8_t, Alloc > &nonce) |
void | start (const uint8_t nonce[], size_t nonce_len) |
size_t | tag_size () const override |
void | update (secure_vector< uint8_t > &buffer, size_t offset=0) |
size_t | update_granularity () const override |
bool | valid_keylength (size_t length) const |
bool | valid_nonce_length (size_t) const override |
Static Public Member Functions | |
static std::unique_ptr< AEAD_Mode > | create (const std::string &algo, Cipher_Dir direction, const std::string &provider="") |
static std::unique_ptr< AEAD_Mode > | create_or_throw (const std::string &algo, Cipher_Dir direction, const std::string &provider="") |
static std::vector< std::string > | providers (const std::string &algo_spec) |
Protected Member Functions | |
size_t | block_size () const |
void | verify_key_set (bool cond) const |
Protected Attributes | |
secure_vector< uint8_t > | m_ad_mac |
std::unique_ptr< BlockCipher > | m_cipher |
std::unique_ptr< MessageAuthenticationCode > | m_cmac |
std::unique_ptr< StreamCipher > | m_ctr |
secure_vector< uint8_t > | m_nonce_mac |
size_t | m_tag_size |
|
inline |
cipher | a 128-bit block cipher |
tag_size | is how big the auth tag will be |
Definition at line 99 of file eax.h.
|
inlinevirtualinherited |
Most AEADs require the key to be set prior to setting the AD A few allow the AD to be set even before the cipher is keyed. Such ciphers would return false from this function.
Reimplemented in Botan::CCM_Mode, and Botan::ChaCha20Poly1305_Mode.
Definition at line 92 of file aead.h.
|
inlineinherited |
Definition at line 169 of file cipher_mode.h.
|
inlineprotectedinherited |
Definition at line 49 of file eax.h.
References Botan::EAX_Mode::m_cipher.
Referenced by Botan::EAX_Encryption::finish(), finish(), and Botan::EAX_Mode::set_associated_data().
|
overridevirtualinherited |
Reset the state.
Implements Botan::SymmetricAlgorithm.
Definition at line 48 of file eax.cpp.
References Botan::EAX_Mode::m_cipher, Botan::EAX_Mode::m_cmac, Botan::EAX_Mode::m_ctr, and Botan::EAX_Mode::reset().
|
staticinherited |
Create an AEAD mode
algo | the algorithm to create |
direction | specify if this should be an encryption or decryption AEAD |
provider | optional specification for provider to use |
Definition at line 60 of file aead.cpp.
References Botan::SCAN_Name::algo_name(), Botan::SCAN_Name::arg(), Botan::SCAN_Name::arg_as_integer(), Botan::SCAN_Name::arg_count(), BOTAN_UNUSED, Botan::AEAD_Mode::create(), Botan::BlockCipher::create(), Botan::ENCRYPTION, Botan::parse_algorithm_name(), Botan::Cipher_Mode::provider(), and Botan::split_on().
Referenced by Botan::AEAD_Mode::create(), Botan::Cipher_Mode::create(), Botan::AEAD_Mode::create_or_throw(), and Botan::get_aead().
|
staticinherited |
Create an AEAD mode, or throw
algo | the algorithm to create |
direction | specify if this should be an encryption or decryption AEAD |
provider | optional specification for provider to use |
Definition at line 50 of file aead.cpp.
References Botan::AEAD_Mode::create(), and Botan::Cipher_Mode::provider().
Referenced by Botan::TLS::Cipher_State::advance_with_server_hello(), Botan::TLS::Connection_Cipher_State::Connection_Cipher_State(), Botan::TLS::Session::decrypt(), and Botan::TLS::Session::encrypt().
|
inlineoverridevirtualinherited |
Implements Botan::Cipher_Mode.
Reimplemented in Botan::CCM_Mode, and Botan::TLS::TLS_CBC_HMAC_AEAD_Mode.
Definition at line 128 of file aead.h.
|
overridevirtual |
Complete processing of a message.
final_block | in/out parameter which must be at least minimum_final_size() bytes, and will be set to any final output |
offset | an offset into final_block to begin processing |
Implements Botan::Cipher_Mode.
Definition at line 158 of file eax.cpp.
References Botan::EAX_Mode::block_size(), BOTAN_ARG_CHECK, BOTAN_ASSERT, Botan::constant_time_compare(), Botan::EAX_Mode::m_ad_mac, Botan::EAX_Mode::m_cmac, Botan::EAX_Mode::m_ctr, Botan::EAX_Mode::m_nonce_mac, and Botan::EAX_Mode::tag_size().
|
overridevirtualinherited |
Implements Botan::SymmetricAlgorithm.
Definition at line 82 of file eax.cpp.
References Botan::EAX_Mode::m_cipher.
|
inlinevirtualinherited |
Returns the maximum supported number of associated data inputs which can be provided to set_associated_data_n
If returns 0, then no associated data is supported.
Reimplemented in Botan::SIV_Mode.
Definition at line 85 of file aead.h.
|
inlineinherited |
Definition at line 120 of file sym_algo.h.
|
inlineoverridevirtual |
Implements Botan::Cipher_Mode.
Definition at line 108 of file eax.h.
References Botan::EAX_Mode::tag_size().
|
inlineinherited |
Definition at line 128 of file sym_algo.h.
Referenced by botan_block_cipher_get_keyspec(), and botan_mac_get_keyspec().
|
finaloverridevirtualinherited |
Implements Botan::SymmetricAlgorithm.
Definition at line 68 of file eax.cpp.
References Botan::EAX_Mode::m_cipher.
|
inlineoverridevirtual |
Returns the size of the output if this transform is used to process a message with input_length bytes. In most cases the answer is precise. If it is not possible to precise (namely for CBC decryption) instead a lower bound is returned.
Implements Botan::Cipher_Mode.
Definition at line 102 of file eax.h.
References BOTAN_ASSERT, and Botan::EAX_Mode::tag_size().
|
overridevirtual |
Process message blocks
Input must be a multiple of update_granularity
Processes msg in place and returns bytes written. Normally this will be either msg_len (indicating the entire message was processed) or for certain AEAD modes zero (indicating that the mode requires the entire message be processed in one pass).
msg | the message to be processed |
msg_len | length of the message in bytes |
Implements Botan::Cipher_Mode.
Definition at line 150 of file eax.cpp.
References BOTAN_STATE_CHECK, Botan::EAX_Mode::m_cmac, Botan::EAX_Mode::m_ctr, and Botan::EAX_Mode::m_nonce_mac.
|
inlinevirtualinherited |
Reimplemented in Botan::GCM_Mode.
Definition at line 180 of file cipher_mode.h.
Referenced by Botan::AEAD_Mode::create(), Botan::Cipher_Mode::create(), Botan::AEAD_Mode::create_or_throw(), and Botan::Cipher_Mode::create_or_throw().
|
staticinherited |
algo_spec | algorithm name |
Definition at line 172 of file cipher_mode.cpp.
References Botan::Cipher_Mode::create(), Botan::ENCRYPTION, and Botan::Cipher_Mode::providers().
Referenced by Botan::Cipher_Mode::providers().
|
overridevirtualinherited |
Resets just the message specific state and allows encrypting again under the existing key
Implements Botan::Cipher_Mode.
Definition at line 56 of file eax.cpp.
References Botan::EAX_Mode::m_ad_mac, Botan::EAX_Mode::m_cmac, and Botan::EAX_Mode::m_nonce_mac.
Referenced by Botan::EAX_Mode::clear().
|
inlineinherited |
Set associated data that is not included in the ciphertext but that should be authenticated. Must be called after set_key and before start.
ad | the associated data |
Definition at line 119 of file aead.h.
Referenced by Botan::TLS::write_record().
|
overridevirtualinherited |
Set associated data that is not included in the ciphertext but that should be authenticated. Must be called after set_key and before start.
Unless reset by another call, the associated data is kept between messages. Thus, if the AD does not change, calling once (after set_key) is the optimum.
ad | the associated data |
ad_len | length of add in bytes |
Implements Botan::AEAD_Mode.
Definition at line 103 of file eax.cpp.
References Botan::EAX_Mode::block_size(), Botan::EAX_Mode::m_ad_mac, Botan::EAX_Mode::m_cmac, and Botan::EAX_Mode::m_nonce_mac.
|
virtualinherited |
Set associated data that is not included in the ciphertext but that should be authenticated. Must be called after set_key and before start.
Unless reset by another call, the associated data is kept between messages. Thus, if the AD does not change, calling once (after set_key) is the optimum.
Some AEADs (namely SIV) support multiple AD inputs. For all other modes only nominal AD input 0 is supported; all other values of i will cause an exception.
ad | the associated data |
ad_len | length of add in bytes |
Reimplemented in Botan::SIV_Mode.
Definition at line 42 of file aead.cpp.
References Botan::SymmetricAlgorithm::name(), and Botan::AEAD_Mode::set_associated_data().
|
inlineinherited |
Set associated data that is not included in the ciphertext but that should be authenticated. Must be called after set_key and before start.
ad | the associated data |
|
inlineinherited |
Definition at line 153 of file sym_algo.h.
|
inlineinherited |
Set the symmetric key of this object.
key | the SymmetricKey to be set. |
Definition at line 147 of file sym_algo.h.
References Botan::OctetString::begin(), and Botan::OctetString::length().
Referenced by botan_cipher_set_key(), botan_mac_set_key(), Botan::Sodium::crypto_stream_salsa20(), Botan::Sodium::crypto_stream_salsa20_xor_ic(), Botan::Sodium::crypto_stream_xsalsa20(), Botan::Sodium::crypto_stream_xsalsa20_xor_ic(), Botan::FPE::fe1_decrypt(), Botan::FPE::fe1_encrypt(), and Botan::Sodium::randombytes_buf_deterministic().
|
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 17 of file sym_algo.cpp.
References Botan::SymmetricAlgorithm::name(), and Botan::SymmetricAlgorithm::valid_keylength().
|
inlineinherited |
Begin processing a message.
Definition at line 87 of file cipher_mode.h.
|
inlineinherited |
Begin processing a message.
nonce | the per message nonce |
Definition at line 69 of file cipher_mode.h.
Referenced by botan_cipher_start(), and Botan::TLS::write_record().
|
inlineinherited |
Begin processing a message.
nonce | the per message nonce |
nonce_len | length of nonce |
Definition at line 79 of file cipher_mode.h.
|
inlineoverridevirtualinherited |
Reimplemented from Botan::Cipher_Mode.
Definition at line 36 of file eax.h.
References Botan::EAX_Mode::m_tag_size.
Referenced by Botan::EAX_Encryption::finish(), finish(), minimum_final_size(), Botan::EAX_Encryption::output_length(), and output_length().
|
inlineinherited |
Process some data. Input must be in size update_granularity() uint8_t blocks.
buffer | in/out parameter which will possibly be resized |
offset | an offset into blocks to begin processing |
Definition at line 112 of file cipher_mode.h.
References BOTAN_ASSERT.
Referenced by botan_cipher_update(), Botan::ChaCha20Poly1305_Encryption::finish(), Botan::EAX_Encryption::finish(), Botan::CBC_Encryption::finish(), Botan::CTS_Encryption::finish(), Botan::CBC_Decryption::finish(), Botan::CTS_Decryption::finish(), Botan::CFB_Encryption::finish(), Botan::CFB_Decryption::finish(), Botan::XTS_Encryption::finish(), Botan::XTS_Decryption::finish(), Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::finish(), and Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption::finish().
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 73 of file eax.cpp.
References Botan::EAX_Mode::m_cipher.
|
inlineinherited |
Check whether a given key length is valid for this algorithm.
length | the key length to be checked. |
Definition at line 138 of file sym_algo.h.
Referenced by Botan::SymmetricAlgorithm::set_key().
|
inlineoverridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 34 of file eax.h.
|
inlineprotectedinherited |
Definition at line 171 of file sym_algo.h.
Referenced by Botan::ChaCha::cipher(), Botan::CTR_BE::cipher(), Botan::RC4::cipher(), Botan::Salsa20::cipher(), Botan::SHAKE_128_Cipher::cipher(), Botan::AES_128::decrypt_n(), Botan::AES_192::decrypt_n(), Botan::AES_256::decrypt_n(), Botan::ARIA_128::decrypt_n(), Botan::ARIA_192::decrypt_n(), Botan::ARIA_256::decrypt_n(), Botan::Blowfish::decrypt_n(), Botan::Camellia_128::decrypt_n(), Botan::Camellia_192::decrypt_n(), Botan::Camellia_256::decrypt_n(), Botan::CAST_128::decrypt_n(), Botan::DES::decrypt_n(), Botan::TripleDES::decrypt_n(), Botan::GOST_28147_89::decrypt_n(), Botan::IDEA::decrypt_n(), Botan::Lion::decrypt_n(), Botan::Noekeon::decrypt_n(), Botan::SEED::decrypt_n(), Botan::Serpent::decrypt_n(), Botan::SHACAL2::decrypt_n(), Botan::SM4::decrypt_n(), Botan::Threefish_512::decrypt_n(), Botan::Twofish::decrypt_n(), Botan::AES_128::encrypt_n(), Botan::AES_192::encrypt_n(), Botan::AES_256::encrypt_n(), Botan::ARIA_128::encrypt_n(), Botan::ARIA_192::encrypt_n(), Botan::ARIA_256::encrypt_n(), Botan::Blowfish::encrypt_n(), Botan::Camellia_128::encrypt_n(), Botan::Camellia_192::encrypt_n(), Botan::Camellia_256::encrypt_n(), Botan::CAST_128::encrypt_n(), Botan::DES::encrypt_n(), Botan::TripleDES::encrypt_n(), Botan::GOST_28147_89::encrypt_n(), Botan::IDEA::encrypt_n(), Botan::Lion::encrypt_n(), Botan::Noekeon::encrypt_n(), Botan::SEED::encrypt_n(), Botan::Serpent::encrypt_n(), Botan::SHACAL2::encrypt_n(), Botan::SM4::encrypt_n(), Botan::Threefish_512::encrypt_n(), Botan::Twofish::encrypt_n(), Botan::OCB_Encryption::finish(), Botan::OCB_Decryption::finish(), Botan::GHASH::ghash_update(), Botan::CFB_Encryption::process(), Botan::CFB_Decryption::process(), Botan::ChaCha::seek(), Botan::CTR_BE::seek(), Botan::Salsa20::seek(), Botan::OCB_Mode::set_associated_data(), Botan::ChaCha::set_iv(), Botan::Salsa20::set_iv(), Botan::GHASH::update(), Botan::GHASH::update_associated_data(), and Botan::ChaCha::write_keystream().
|
protectedinherited |
Definition at line 57 of file eax.h.
Referenced by Botan::EAX_Encryption::finish(), finish(), Botan::EAX_Mode::reset(), and Botan::EAX_Mode::set_associated_data().
|
protectedinherited |
Definition at line 53 of file eax.h.
Referenced by Botan::EAX_Mode::block_size(), Botan::EAX_Mode::clear(), Botan::EAX_Mode::key_spec(), Botan::EAX_Mode::name(), and Botan::EAX_Mode::update_granularity().
|
protectedinherited |
Definition at line 55 of file eax.h.
Referenced by Botan::EAX_Mode::clear(), Botan::EAX_Encryption::finish(), finish(), Botan::EAX_Encryption::process(), process(), Botan::EAX_Mode::reset(), and Botan::EAX_Mode::set_associated_data().
|
protectedinherited |
Definition at line 54 of file eax.h.
Referenced by Botan::EAX_Mode::clear(), finish(), Botan::EAX_Encryption::process(), and process().
|
protectedinherited |
Definition at line 59 of file eax.h.
Referenced by Botan::EAX_Encryption::finish(), finish(), Botan::EAX_Encryption::process(), process(), Botan::EAX_Mode::reset(), and Botan::EAX_Mode::set_associated_data().
|
protectedinherited |
Definition at line 51 of file eax.h.
Referenced by Botan::EAX_Mode::tag_size().