Botan
2.6.0
Crypto and TLS for C++11
|
#include <cbc.h>
Public Member Functions | |
virtual bool | authenticated () const |
CBC_Encryption (BlockCipher *cipher, BlockCipherModePaddingMethod *padding) | |
void | clear () override |
size_t | default_nonce_length () const override |
void | finish (secure_vector< uint8_t > &final_block, size_t offset=0) override |
Key_Length_Specification | key_spec () const override |
size_t | minimum_final_size () const override |
std::string | name () const override |
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_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 () |
virtual size_t | tag_size () const |
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 n) const override |
Static Public Member Functions | |
static std::unique_ptr< Cipher_Mode > | create (const std::string &algo, Cipher_Dir direction, const std::string &provider="") |
static std::unique_ptr< Cipher_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 |
const BlockCipher & | cipher () const |
const BlockCipherModePaddingMethod & | padding () const |
secure_vector< uint8_t > & | state () |
uint8_t * | state_ptr () |
|
inline |
cipher | block cipher to use |
padding | padding method to use |
Definition at line 75 of file cbc.h.
|
inlinevirtualinherited |
Reimplemented in Botan::AEAD_Mode.
Definition at line 179 of file cipher_mode.h.
|
inlineprotectedinherited |
Definition at line 51 of file cbc.h.
Referenced by Botan::CBC_Mode::default_nonce_length(), finish(), Botan::CTS_Encryption::finish(), Botan::CBC_Decryption::finish(), Botan::CTS_Decryption::finish(), Botan::CTS_Encryption::minimum_final_size(), Botan::CBC_Decryption::minimum_final_size(), Botan::CTS_Decryption::minimum_final_size(), output_length(), process(), Botan::CBC_Decryption::process(), Botan::CBC_Mode::valid_nonce_length(), Botan::CTS_Encryption::valid_nonce_length(), and Botan::CTS_Decryption::valid_nonce_length().
|
inlineprotectedinherited |
Definition at line 41 of file cbc.h.
Referenced by Botan::CTS_Encryption::finish(), Botan::CTS_Decryption::finish(), Botan::CBC_Mode::key_spec(), Botan::CBC_Mode::name(), process(), Botan::CBC_Decryption::process(), and Botan::CBC_Mode::update_granularity().
|
overridevirtualinherited |
Zeroise all state See also reset_msg()
Implements Botan::Cipher_Mode.
Definition at line 26 of file cbc.cpp.
References Botan::CBC_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 50 of file cipher_mode.cpp.
References Botan::SCAN_Name::algo_name(), Botan::SCAN_Name::arg(), Botan::SCAN_Name::arg_as_integer(), Botan::SCAN_Name::arg_count(), Botan::BlockCipher::create(), Botan::AEAD_Mode::create(), Botan::StreamCipher::create(), Botan::ENCRYPTION, Botan::get_bc_pad(), Botan::make_openssl_cipher_mode(), Botan::parse_algorithm_name(), Botan::Cipher_Mode::provider(), and Botan::split_on().
Referenced by botan_cipher_init(), Botan::Cipher_Mode::create_or_throw(), Botan::get_cipher_mode(), Botan::pbes2_decrypt(), and Botan::Cipher_Mode::providers().
|
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 40 of file cipher_mode.cpp.
References Botan::Cipher_Mode::create(), and Botan::Cipher_Mode::provider().
Referenced by Botan::ECIES_System_Params::create_cipher(), Botan::CryptoBox::decrypt_bin(), Botan::CryptoBox::encrypt(), and Botan::get_cipher().
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 55 of file cbc.cpp.
References Botan::CBC_Mode::block_size().
|
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.
Reimplemented in Botan::CTS_Encryption.
Definition at line 121 of file cbc.cpp.
References Botan::BlockCipherModePaddingMethod::add_padding(), Botan::CBC_Mode::block_size(), BOTAN_ASSERT, Botan::CBC_Mode::name(), Botan::CBC_Mode::padding(), and Botan::Cipher_Mode::update().
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 50 of file cbc.cpp.
References Botan::CBC_Mode::cipher(), and Botan::SymmetricAlgorithm::key_spec().
|
overridevirtual |
Implements Botan::Cipher_Mode.
Reimplemented in Botan::CTS_Encryption.
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 37 of file cbc.cpp.
References Botan::CBC_Mode::cipher(), Botan::BlockCipherModePaddingMethod::name(), Botan::SymmetricAlgorithm::name(), and Botan::CBC_Mode::padding().
Referenced by finish(), Botan::CTS_Encryption::finish(), Botan::CBC_Decryption::finish(), and Botan::CTS_Decryption::finish().
|
overridevirtual |
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.
Implements Botan::Cipher_Mode.
Reimplemented in Botan::CTS_Encryption.
Definition at line 89 of file cbc.cpp.
References Botan::CBC_Mode::block_size(), and Botan::round_up().
|
inlineprotectedinherited |
Definition at line 43 of file cbc.h.
References BOTAN_ASSERT_NONNULL.
Referenced by finish(), Botan::CBC_Decryption::finish(), and Botan::CBC_Mode::name().
|
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 97 of file cbc.cpp.
References Botan::CBC_Mode::block_size(), BOTAN_ASSERT, Botan::CBC_Mode::cipher(), Botan::BlockCipher::encrypt(), Botan::CBC_Mode::state(), Botan::CBC_Mode::state_ptr(), and Botan::xor_buf().
|
inlinevirtualinherited |
Reimplemented in Botan::GCM_Mode.
Definition at line 236 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 173 of file cipher_mode.cpp.
References Botan::Cipher_Mode::create(), and Botan::ENCRYPTION.
|
overridevirtualinherited |
Resets just the message specific state and allows encrypting again under the existing key
Implements Botan::Cipher_Mode.
Reimplemented in Botan::CBC_Decryption.
Definition at line 32 of file cbc.cpp.
References Botan::zeroise().
Referenced by Botan::CBC_Mode::clear().
|
inlineinherited |
Set the symmetric key of this transform
key | contains the key material |
Definition at line 206 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 215 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 225 of file cipher_mode.h.
|
inlineinherited |
Begin processing a message.
nonce | the per message nonce |
Definition at line 72 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 82 of file cipher_mode.h.
|
inlineinherited |
Begin processing a message.
Definition at line 90 of file cipher_mode.h.
|
inlineprotectedinherited |
Definition at line 49 of file cbc.h.
Referenced by process(), and Botan::CBC_Decryption::reset().
|
inlineprotectedinherited |
Definition at line 53 of file cbc.h.
Referenced by Botan::CTS_Encryption::finish(), Botan::CTS_Decryption::finish(), process(), and Botan::CBC_Decryption::process().
|
inlinevirtualinherited |
Reimplemented in Botan::SIV_Mode, Botan::OCB_Mode, Botan::CCM_Mode, Botan::TLS::TLS_CBC_HMAC_AEAD_Mode, Botan::ChaCha20Poly1305_Mode, Botan::GCM_Mode, and Botan::EAX_Mode.
Definition at line 184 of file cipher_mode.h.
Referenced by botan_cipher_get_tag_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 115 of file cipher_mode.h.
References BOTAN_ASSERT.
Referenced by botan_cipher_update(), Botan::XTS_Encryption::finish(), Botan::ChaCha20Poly1305_Encryption::finish(), Botan::CFB_Encryption::finish(), 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().
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 45 of file cbc.cpp.
References Botan::CBC_Mode::cipher(), and Botan::BlockCipher::parallel_bytes().
|
inlineinherited |
Check whether a given key length is valid for this algorithm.
length | the key length to be checked. |
Definition at line 196 of file cipher_mode.h.
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Reimplemented in Botan::CTS_Decryption, and Botan::CTS_Encryption.
Definition at line 60 of file cbc.cpp.
References Botan::CBC_Mode::block_size().