Botan
2.1.0
Crypto and TLS for C++11
|
#include <xts.h>
Public Member Functions | |
virtual bool | authenticated () const |
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 |
XTS_Encryption (BlockCipher *cipher) | |
Protected Member Functions | |
const BlockCipher & | cipher () const |
const uint8_t * | tweak () const |
void | update_tweak (size_t last_used) |
|
inlineexplicit |
|
inlinevirtualinherited |
Reimplemented in Botan::AEAD_Mode.
Definition at line 145 of file cipher_mode.h.
|
inlineprotectedinherited |
Definition at line 44 of file xts.h.
Referenced by Botan::XTS_Mode::default_nonce_length(), finish(), Botan::XTS_Decryption::finish(), Botan::XTS_Mode::key_spec(), Botan::XTS_Mode::minimum_final_size(), Botan::XTS_Mode::name(), process(), Botan::XTS_Decryption::process(), Botan::XTS_Mode::update_granularity(), and Botan::XTS_Mode::valid_nonce_length().
|
overridevirtualinherited |
Zeroise all state See also reset_msg()
Implements Botan::Cipher_Mode.
Definition at line 61 of file xts.cpp.
References Botan::XTS_Mode::reset().
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 93 of file xts.cpp.
References Botan::BlockCipher::block_size(), and Botan::XTS_Mode::cipher().
|
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 170 of file xts.cpp.
References Botan::BlockCipher::block_size(), BOTAN_ASSERT, Botan::XTS_Mode::cipher(), Botan::BlockCipher::encrypt(), Botan::XTS_Mode::minimum_final_size(), Botan::XTS_Mode::tweak(), Botan::Cipher_Mode::update(), and Botan::xor_buf().
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 88 of file xts.cpp.
References Botan::XTS_Mode::cipher(), Botan::SymmetricAlgorithm::key_spec(), and Botan::Key_Length_Specification::multiple().
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 83 of file xts.cpp.
References Botan::BlockCipher::block_size(), and Botan::XTS_Mode::cipher().
Referenced by finish(), and Botan::XTS_Decryption::finish().
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 73 of file xts.cpp.
References Botan::XTS_Mode::cipher(), and Botan::SymmetricAlgorithm::name().
|
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.
|
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 143 of file xts.cpp.
References Botan::BlockCipher::block_size(), BOTAN_ASSERT, Botan::XTS_Mode::cipher(), Botan::BlockCipher::encrypt_n(), Botan::CT::min(), Botan::XTS_Mode::tweak(), Botan::XTS_Mode::update_granularity(), Botan::XTS_Mode::update_tweak(), and Botan::xor_buf().
|
inlinevirtualinherited |
Reimplemented in Botan::GCM_Mode.
Definition at line 202 of file cipher_mode.h.
|
overridevirtualinherited |
Resets just the message specific state and allows encrypting again under the existing key
Implements Botan::Cipher_Mode.
Definition at line 68 of file xts.cpp.
References Botan::zeroise().
Referenced by Botan::XTS_Mode::clear().
|
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.
|
inlinevirtualinherited |
Reimplemented in Botan::SIV_Mode, Botan::CCM_Mode, Botan::OCB_Mode, Botan::TLS::TLS_CBC_HMAC_AEAD_Mode, Botan::ChaCha20Poly1305_Mode, Botan::GCM_Mode, and Botan::EAX_Mode.
Definition at line 150 of file cipher_mode.h.
Referenced by botan_cipher_get_tag_length().
|
inlineprotectedinherited |
Definition at line 42 of file xts.h.
Referenced by finish(), Botan::XTS_Decryption::finish(), process(), and Botan::XTS_Decryption::process().
|
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(), 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().
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 78 of file xts.cpp.
References Botan::XTS_Mode::cipher(), and Botan::BlockCipher::parallel_bytes().
Referenced by process(), Botan::XTS_Decryption::process(), Botan::XTS_Mode::update_tweak(), and Botan::XTS_Mode::XTS_Mode().
|
protectedinherited |
Definition at line 125 of file xts.cpp.
References Botan::XTS_Mode::update_granularity().
Referenced by process(), and Botan::XTS_Decryption::process().
|
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.
|
overridevirtualinherited |
Implements Botan::Cipher_Mode.
Definition at line 98 of file xts.cpp.
References Botan::BlockCipher::block_size(), and Botan::XTS_Mode::cipher().