Botan  2.1.0
Crypto and TLS for C++11
Public Member Functions | List of all members
Botan::Cipher_Mode Class Referenceabstract

#include <cipher_mode.h>

Inheritance diagram for Botan::Cipher_Mode:
Botan::AEAD_Mode Botan::CBC_Mode Botan::CFB_Mode Botan::Stream_Cipher_Mode Botan::XTS_Mode Botan::CCM_Mode Botan::ChaCha20Poly1305_Mode Botan::EAX_Mode Botan::GCM_Mode Botan::OCB_Mode Botan::SIV_Mode Botan::TLS::TLS_CBC_HMAC_AEAD_Mode Botan::CBC_Decryption Botan::CBC_Encryption Botan::CFB_Decryption Botan::CFB_Encryption Botan::XTS_Decryption Botan::XTS_Encryption

Public Member Functions

virtual bool authenticated () const
 
virtual void clear ()=0
 
virtual size_t default_nonce_length () const =0
 
virtual void finish (secure_vector< uint8_t > &final_block, size_t offset=0)=0
 
virtual Key_Length_Specification key_spec () const =0
 
virtual size_t minimum_final_size () const =0
 
virtual std::string name () const =0
 
virtual size_t output_length (size_t input_length) const =0
 
virtual size_t process (uint8_t msg[], size_t msg_len)=0
 
virtual std::string provider () const
 
virtual void reset ()=0
 
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 void start_msg (const uint8_t nonce[], size_t nonce_len)=0
 
virtual size_t tag_size () const
 
void update (secure_vector< uint8_t > &buffer, size_t offset=0)
 
virtual size_t update_granularity () const =0
 
bool valid_keylength (size_t length) const
 
virtual bool valid_nonce_length (size_t nonce_len) const =0
 
virtual ~Cipher_Mode ()=default
 

Detailed Description

Interface for cipher modes

Definition at line 23 of file cipher_mode.h.

Constructor & Destructor Documentation

virtual Botan::Cipher_Mode::~Cipher_Mode ( )
virtualdefault

Member Function Documentation

virtual bool Botan::Cipher_Mode::authenticated ( ) const
inlinevirtual
Returns
true iff this mode provides authentication as well as confidentiality.

Reimplemented in Botan::AEAD_Mode.

Definition at line 145 of file cipher_mode.h.

145 { return false; }
virtual void Botan::Cipher_Mode::clear ( )
pure virtual
virtual size_t Botan::Cipher_Mode::default_nonce_length ( ) const
pure virtual
virtual void Botan::Cipher_Mode::finish ( secure_vector< uint8_t > &  final_block,
size_t  offset = 0 
)
pure virtual
virtual Key_Length_Specification Botan::Cipher_Mode::key_spec ( ) const
pure virtual
virtual size_t Botan::Cipher_Mode::minimum_final_size ( ) const
pure virtual
virtual std::string Botan::Cipher_Mode::name ( ) const
pure virtual
virtual size_t Botan::Cipher_Mode::output_length ( size_t  input_length) const
pure virtual
virtual size_t Botan::Cipher_Mode::process ( uint8_t  msg[],
size_t  msg_len 
)
pure virtual

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).

Parameters
msgthe message to be processed
msg_lenlength of the message in bytes

Implemented in Botan::CBC_Decryption, Botan::OCB_Decryption, Botan::EAX_Decryption, Botan::GCM_Decryption, Botan::CFB_Decryption, Botan::ChaCha20Poly1305_Decryption, Botan::OCB_Encryption, Botan::XTS_Decryption, Botan::EAX_Encryption, Botan::GCM_Encryption, Botan::CBC_Encryption, Botan::CFB_Encryption, Botan::ChaCha20Poly1305_Encryption, Botan::XTS_Encryption, Botan::TLS::TLS_CBC_HMAC_AEAD_Mode, Botan::CCM_Mode, Botan::SIV_Mode, and Botan::Stream_Cipher_Mode.

virtual std::string Botan::Cipher_Mode::provider ( ) const
inlinevirtual
Returns
provider information about this implementation. Default is "base", might also return "sse2", "avx2", "openssl", or some other arbitrary string.

Reimplemented in Botan::GCM_Mode.

Definition at line 202 of file cipher_mode.h.

202 { return "base"; }
virtual void Botan::Cipher_Mode::reset ( )
pure virtual
template<typename Alloc >
void Botan::Cipher_Mode::set_key ( const std::vector< uint8_t, Alloc > &  key)
inline

Set the symmetric key of this transform

Parameters
keycontains the key material

Definition at line 172 of file cipher_mode.h.

Referenced by botan_cipher_set_key().

173  {
174  set_key(key.data(), key.size());
175  }
void set_key(const std::vector< uint8_t, Alloc > &key)
Definition: cipher_mode.h:172
void Botan::Cipher_Mode::set_key ( const SymmetricKey key)
inline

Set the symmetric key of this transform

Parameters
keycontains the key material

Definition at line 181 of file cipher_mode.h.

References Botan::OctetString::begin(), and Botan::OctetString::length().

182  {
183  set_key(key.begin(), key.length());
184  }
void set_key(const std::vector< uint8_t, Alloc > &key)
Definition: cipher_mode.h:172
void Botan::Cipher_Mode::set_key ( const uint8_t  key[],
size_t  length 
)
inline

Set the symmetric key of this transform

Parameters
keycontains the key material
lengthin bytes of key param

Definition at line 191 of file cipher_mode.h.

192  {
193  if(!valid_keylength(length))
194  throw Invalid_Key_Length(name(), length);
195  key_schedule(key, length);
196  }
virtual std::string name() const =0
bool valid_keylength(size_t length) const
Definition: cipher_mode.h:162
template<typename Alloc >
void Botan::Cipher_Mode::start ( const std::vector< uint8_t, Alloc > &  nonce)
inline

Begin processing a message.

Parameters
noncethe per message nonce

Definition at line 38 of file cipher_mode.h.

Referenced by botan_cipher_start(), and Botan::TLS::write_record().

39  {
40  start_msg(nonce.data(), nonce.size());
41  }
virtual void start_msg(const uint8_t nonce[], size_t nonce_len)=0
void Botan::Cipher_Mode::start ( const uint8_t  nonce[],
size_t  nonce_len 
)
inline

Begin processing a message.

Parameters
noncethe per message nonce
nonce_lenlength of nonce

Definition at line 48 of file cipher_mode.h.

49  {
50  start_msg(nonce, nonce_len);
51  }
virtual void start_msg(const uint8_t nonce[], size_t nonce_len)=0
void Botan::Cipher_Mode::start ( )
inline

Begin processing a message.

Definition at line 56 of file cipher_mode.h.

57  {
58  return start_msg(nullptr, 0);
59  }
virtual void start_msg(const uint8_t nonce[], size_t nonce_len)=0
virtual void Botan::Cipher_Mode::start_msg ( const uint8_t  nonce[],
size_t  nonce_len 
)
pure virtual
virtual size_t Botan::Cipher_Mode::tag_size ( ) const
inlinevirtual
Returns
the size of the authentication tag used (in bytes)

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().

150 { return 0; }
void Botan::Cipher_Mode::update ( secure_vector< uint8_t > &  buffer,
size_t  offset = 0 
)
inline

Process some data. Input must be in size update_granularity() uint8_t blocks.

Parameters
bufferin/out parameter which will possibly be resized
offsetan 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().

82  {
83  BOTAN_ASSERT(buffer.size() >= offset, "Offset ok");
84  uint8_t* buf = buffer.data() + offset;
85  const size_t buf_size = buffer.size() - offset;
86 
87  const size_t written = process(buf, buf_size);
88  buffer.resize(offset + written);
89  }
#define BOTAN_ASSERT(expr, assertion_made)
Definition: assert.h:27
virtual size_t process(uint8_t msg[], size_t msg_len)=0
virtual size_t Botan::Cipher_Mode::update_granularity ( ) const
pure virtual
bool Botan::Cipher_Mode::valid_keylength ( size_t  length) const
inline

Check whether a given key length is valid for this algorithm.

Parameters
lengththe key length to be checked.
Returns
true if the key length is valid.

Definition at line 162 of file cipher_mode.h.

163  {
164  return key_spec().valid_keylength(length);
165  }
bool valid_keylength(size_t length) const
Definition: key_spec.h:51
virtual Key_Length_Specification key_spec() const =0
virtual bool Botan::Cipher_Mode::valid_nonce_length ( size_t  nonce_len) const
pure virtual

The documentation for this class was generated from the following file: