Botan
2.1.0
Crypto and TLS for C++11
|
#include <tls_cbc.h>
Public Member Functions | |
bool | authenticated () const override |
void | clear () overridefinal |
size_t | default_nonce_length () const overridefinal |
virtual void | finish (secure_vector< uint8_t > &final_block, size_t offset=0)=0 |
Key_Length_Specification | key_spec () const overridefinal |
virtual size_t | minimum_final_size () const =0 |
std::string | name () const overridefinal |
virtual size_t | output_length (size_t input_length) const =0 |
size_t | process (uint8_t buf[], size_t sz) overridefinal |
virtual std::string | provider () const |
void | reset () overridefinal |
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 |
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) |
template<typename Alloc > | |
void | start (const std::vector< uint8_t, Alloc > &nonce) |
void | start (const uint8_t nonce[], size_t nonce_len) |
void | start () |
size_t | tag_size () const overridefinal |
void | update (secure_vector< uint8_t > &buffer, size_t offset=0) |
size_t | update_granularity () const overridefinal |
bool | valid_keylength (size_t length) const |
bool | valid_nonce_length (size_t nl) const overridefinal |
Protected Member Functions | |
std::vector< uint8_t > & | assoc_data () |
std::vector< uint8_t > | assoc_data_with_len (uint16_t len) |
size_t | block_size () const |
secure_vector< uint8_t > & | cbc_state () |
BlockCipher & | cipher () const |
size_t | cipher_keylen () const |
size_t | iv_size () const |
MessageAuthenticationCode & | mac () const |
size_t | mac_keylen () const |
secure_vector< uint8_t > & | msg () |
TLS_CBC_HMAC_AEAD_Mode (const std::string &cipher_name, size_t cipher_keylen, const std::string &mac_name, size_t mac_keylen, bool use_explicit_iv, bool use_encrypt_then_mac) | |
bool | use_encrypt_then_mac () const |
TLS CBC+HMAC AEAD base class (GenericBlockCipher in TLS spec) This is the weird TLS-specific mode, not for general consumption.
|
protected |
Definition at line 25 of file tls_cbc.cpp.
References Botan::BlockCipher::create_or_throw(), and Botan::MessageAuthenticationCode::create_or_throw().
|
inlineprotected |
Definition at line 75 of file tls_cbc.h.
Referenced by Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::finish(), and Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::set_associated_data().
|
protected |
Definition at line 114 of file tls_cbc.cpp.
References BOTAN_ASSERT, and Botan::get_byte().
Referenced by Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption::finish().
|
inlineoverridevirtualinherited |
Reimplemented from Botan::Cipher_Mode.
|
inlineprotected |
Definition at line 58 of file tls_cbc.h.
Referenced by Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::finish(), Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption::finish(), Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::output_length(), Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::set_associated_data(), and valid_nonce_length().
|
inlineprotected |
Definition at line 74 of file tls_cbc.h.
Referenced by Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::finish(), Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption::finish(), and reset().
|
inlineprotected |
|
inlineprotected |
|
finaloverridevirtual |
Zeroise all state See also reset_msg()
Implements Botan::Cipher_Mode.
Definition at line 46 of file tls_cbc.cpp.
References cipher(), Botan::SymmetricAlgorithm::clear(), mac(), and reset().
|
inlinefinaloverridevirtual |
Reimplemented from Botan::AEAD_Mode.
|
pure virtualinherited |
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 |
Implemented in Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption, Botan::CTS_Decryption, Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption, Botan::CBC_Decryption, Botan::OCB_Decryption, Botan::CCM_Decryption, Botan::EAX_Decryption, Botan::GCM_Decryption, Botan::SIV_Decryption, Botan::CTS_Encryption, Botan::CFB_Decryption, Botan::ChaCha20Poly1305_Decryption, Botan::OCB_Encryption, Botan::CCM_Encryption, Botan::SIV_Encryption, Botan::XTS_Decryption, Botan::EAX_Encryption, Botan::GCM_Encryption, Botan::CBC_Encryption, Botan::CFB_Encryption, Botan::ChaCha20Poly1305_Encryption, Botan::XTS_Encryption, and Botan::Stream_Cipher_Mode.
Referenced by botan_cipher_update(), and Botan::TLS::write_record().
|
inlineprotected |
Definition at line 57 of file tls_cbc.h.
Referenced by Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::finish(), Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption::finish(), Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::set_associated_data(), and valid_nonce_length().
|
finaloverridevirtual |
Implements Botan::Cipher_Mode.
Definition at line 77 of file tls_cbc.cpp.
|
inlineprotected |
Definition at line 68 of file tls_cbc.h.
References BOTAN_ASSERT_NONNULL, and m_mac.
Referenced by clear(), Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::finish(), and Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption::finish().
|
inlineprotected |
|
pure virtualinherited |
Implemented in Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption, Botan::CTS_Decryption, Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption, Botan::CBC_Decryption, Botan::CCM_Decryption, Botan::OCB_Decryption, Botan::SIV_Decryption, Botan::EAX_Decryption, Botan::GCM_Decryption, Botan::CTS_Encryption, Botan::CCM_Encryption, Botan::SIV_Encryption, Botan::ChaCha20Poly1305_Decryption, Botan::OCB_Encryption, Botan::EAX_Encryption, Botan::CBC_Encryption, Botan::GCM_Encryption, Botan::ChaCha20Poly1305_Encryption, Botan::Stream_Cipher_Mode, Botan::CFB_Mode, and Botan::XTS_Mode.
Referenced by botan_cipher_update().
|
inlineprotected |
Definition at line 76 of file tls_cbc.h.
Referenced by Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::finish(), and Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption::finish().
|
finaloverridevirtual |
|
pure virtualinherited |
Returns the size of the output if this transform is used to process a message with input_length bytes. Will throw if unable to give a precise answer.
Implemented in Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption, Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption, Botan::CBC_Decryption, Botan::CCM_Decryption, Botan::OCB_Decryption, Botan::SIV_Decryption, Botan::EAX_Decryption, Botan::GCM_Decryption, Botan::CTS_Encryption, Botan::CCM_Encryption, Botan::SIV_Encryption, Botan::XTS_Decryption, Botan::OCB_Encryption, Botan::ChaCha20Poly1305_Decryption, Botan::CBC_Encryption, Botan::EAX_Encryption, Botan::GCM_Encryption, Botan::XTS_Encryption, Botan::ChaCha20Poly1305_Encryption, Botan::Stream_Cipher_Mode, and Botan::CFB_Mode.
Referenced by Botan::TLS::write_record().
|
finaloverridevirtual |
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 108 of file tls_cbc.cpp.
|
inlinevirtualinherited |
Reimplemented in Botan::GCM_Mode.
Definition at line 202 of file cipher_mode.h.
|
finaloverridevirtual |
Resets just the message specific state and allows encrypting again under the existing key
Implements Botan::Cipher_Mode.
Definition at line 53 of file tls_cbc.cpp.
References cbc_state().
Referenced by 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 66 of file aead.h.
Referenced by Botan::TLS::write_record().
|
overridevirtual |
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.
Reimplemented in Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption.
Definition at line 123 of file tls_cbc.cpp.
Referenced by Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::set_associated_data().
|
inlineinherited |
|
inlineinherited |
Set the symmetric key of this transform
key | contains the key material |
Definition at line 172 of file cipher_mode.h.
Referenced by botan_cipher_set_key().
|
inlineinherited |
Set the symmetric key of this transform
key | contains the key material |
Definition at line 181 of file cipher_mode.h.
References Botan::OctetString::begin(), and Botan::OctetString::length().
|
inlineinherited |
Set the symmetric key of this transform
key | contains the key material |
length | in bytes of key param |
Definition at line 191 of file cipher_mode.h.
|
inlineinherited |
Begin processing a message.
nonce | the per message nonce |
Definition at line 38 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 48 of file cipher_mode.h.
|
inlineinherited |
Begin processing a message.
Definition at line 56 of file cipher_mode.h.
|
inlinefinaloverridevirtual |
Reimplemented from Botan::Cipher_Mode.
Definition at line 39 of file tls_cbc.h.
Referenced by Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::finish(), Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption::finish(), and Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::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 81 of file cipher_mode.h.
References BOTAN_ASSERT.
Referenced by botan_cipher_update(), Botan::XTS_Encryption::finish(), Botan::ChaCha20Poly1305_Encryption::finish(), Botan::CBC_Encryption::finish(), Botan::CFB_Encryption::finish(), Botan::EAX_Encryption::finish(), Botan::XTS_Decryption::finish(), Botan::CFB_Decryption::finish(), Botan::CTS_Encryption::finish(), Botan::CBC_Decryption::finish(), Botan::TLS::TLS_CBC_HMAC_AEAD_Encryption::finish(), Botan::CTS_Decryption::finish(), and Botan::TLS::TLS_CBC_HMAC_AEAD_Decryption::finish().
|
finaloverridevirtual |
Implements Botan::Cipher_Mode.
Definition at line 65 of file tls_cbc.cpp.
|
inlineprotected |
|
inlineinherited |
Check whether a given key length is valid for this algorithm.
length | the key length to be checked. |
Definition at line 162 of file cipher_mode.h.
|
finaloverridevirtual |
Implements Botan::Cipher_Mode.
Definition at line 70 of file tls_cbc.cpp.
References block_size(), and iv_size().