Botan  2.1.0
Crypto and TLS for C++11
Public Member Functions | Protected Attributes | List of all members
Botan::GCM_Decryption Class Referencefinal

#include <gcm.h>

Inheritance diagram for Botan::GCM_Decryption:
Botan::GCM_Mode Botan::AEAD_Mode Botan::Cipher_Mode

Public Member Functions

bool authenticated () const override
 
void clear () override
 
size_t default_nonce_length () const override
 
void finish (secure_vector< uint8_t > &final_block, size_t offset=0) override
 
 GCM_Decryption (BlockCipher *cipher, size_t tag_size=16)
 
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
 
std::string provider () const override
 
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
 
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 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
 

Protected Attributes

const size_t m_BS = 16
 
const std::string m_cipher_name
 
std::unique_ptr< StreamCipherm_ctr
 
std::unique_ptr< GHASHm_ghash
 
const size_t m_tag_size
 

Detailed Description

GCM Decryption

Definition at line 86 of file gcm.h.

Constructor & Destructor Documentation

Botan::GCM_Decryption::GCM_Decryption ( BlockCipher cipher,
size_t  tag_size = 16 
)
inline
Parameters
cipherthe 128 bit block cipher to use
tag_sizeis how big the auth tag will be

Definition at line 93 of file gcm.h.

93  :
94  GCM_Mode(cipher, tag_size) {}
GCM_Mode(BlockCipher *cipher, size_t tag_size)
Definition: gcm.cpp:168
size_t tag_size() const override
Definition: gcm.h:37

Member Function Documentation

bool Botan::AEAD_Mode::authenticated ( ) const
inlineoverridevirtualinherited
Returns
true iff this mode provides authentication as well as confidentiality.

Reimplemented from Botan::Cipher_Mode.

Definition at line 25 of file aead.h.

25 { return true; }
void Botan::GCM_Mode::clear ( )
overridevirtualinherited

Zeroise all state See also reset_msg()

Implements Botan::Cipher_Mode.

Definition at line 183 of file gcm.cpp.

References Botan::GCM_Mode::m_ctr, Botan::GCM_Mode::m_ghash, and Botan::GCM_Mode::reset().

184  {
185  m_ctr->clear();
186  m_ghash->clear();
187  reset();
188  }
std::unique_ptr< StreamCipher > m_ctr
Definition: gcm.h:52
void reset() override
Definition: gcm.cpp:190
std::unique_ptr< GHASH > m_ghash
Definition: gcm.h:53
size_t Botan::AEAD_Mode::default_nonce_length ( ) const
inlineoverridevirtualinherited
Returns
default AEAD nonce size (a commonly supported value among AEAD modes, and large enough that random collisions are unlikely)

Implements Botan::Cipher_Mode.

Reimplemented in Botan::TLS::TLS_CBC_HMAC_AEAD_Mode, and Botan::CCM_Mode.

Definition at line 75 of file aead.h.

75 { return 12; }
void Botan::GCM_Decryption::finish ( secure_vector< uint8_t > &  final_block,
size_t  offset = 0 
)
overridevirtual

Complete processing of a message.

Parameters
final_blockin/out parameter which must be at least minimum_final_size() bytes, and will be set to any final output
offsetan offset into final_block to begin processing

Implements Botan::Cipher_Mode.

Definition at line 290 of file gcm.cpp.

References BOTAN_ARG_CHECK, Botan::GCM_Mode::m_ctr, Botan::GCM_Mode::m_ghash, Botan::same_mem(), and Botan::GCM_Mode::tag_size().

291  {
292  BOTAN_ARG_CHECK(offset <= buffer.size());
293  const size_t sz = buffer.size() - offset;
294  uint8_t* buf = buffer.data() + offset;
295 
296  if(sz < tag_size())
297  throw Exception("Insufficient input for GCM decryption, tag missing");
298 
299  const size_t remaining = sz - tag_size();
300 
301  // handle any final input before the tag
302  if(remaining)
303  {
304  m_ghash->update(buf, remaining);
305  m_ctr->cipher(buf, buf, remaining);
306  }
307 
308  auto mac = m_ghash->final();
309 
310  const uint8_t* included_tag = &buffer[remaining+offset];
311 
312  if(!same_mem(mac.data(), included_tag, tag_size()))
313  throw Integrity_Failure("GCM tag check failed");
314 
315  buffer.resize(offset + remaining);
316  }
std::unique_ptr< StreamCipher > m_ctr
Definition: gcm.h:52
bool same_mem(const T *p1, const T *p2, size_t n)
Definition: mem_ops.h:98
size_t tag_size() const override
Definition: gcm.h:37
std::unique_ptr< GHASH > m_ghash
Definition: gcm.h:53
#define BOTAN_ARG_CHECK(expr)
Definition: exceptn.h:44
Key_Length_Specification Botan::GCM_Mode::key_spec ( ) const
overridevirtualinherited
Returns
object describing limits on key size

Implements Botan::Cipher_Mode.

Definition at line 215 of file gcm.cpp.

References Botan::GCM_Mode::m_ctr.

216  {
217  return m_ctr->key_spec();
218  }
std::unique_ptr< StreamCipher > m_ctr
Definition: gcm.h:52
size_t Botan::GCM_Decryption::minimum_final_size ( ) const
inlineoverridevirtual
Returns
required minimium size to finalize() - may be any length larger than this.

Implements Botan::Cipher_Mode.

Definition at line 102 of file gcm.h.

102 { return tag_size(); }
size_t tag_size() const override
Definition: gcm.h:37
std::string Botan::GCM_Mode::name ( ) const
overridevirtualinherited

Implements Botan::Cipher_Mode.

Definition at line 195 of file gcm.cpp.

References Botan::GCM_Mode::m_cipher_name, Botan::GCM_Mode::tag_size(), and Botan::ASN1::to_string().

Referenced by Botan::GCM_Mode::GCM_Mode().

196  {
197  return (m_cipher_name + "/GCM(" + std::to_string(tag_size()) + ")");
198  }
std::string to_string(const BER_Object &obj)
Definition: asn1_obj.cpp:47
const std::string m_cipher_name
Definition: gcm.h:50
size_t tag_size() const override
Definition: gcm.h:37
size_t Botan::GCM_Decryption::output_length ( size_t  input_length) const
inlineoverridevirtual

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.

Definition at line 96 of file gcm.h.

References BOTAN_ASSERT.

97  {
98  BOTAN_ASSERT(input_length >= tag_size(), "Sufficient input");
99  return input_length - tag_size();
100  }
#define BOTAN_ASSERT(expr, assertion_made)
Definition: assert.h:27
size_t tag_size() const override
Definition: gcm.h:37
size_t Botan::GCM_Decryption::process ( uint8_t  msg[],
size_t  msg_len 
)
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).

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

Implements Botan::Cipher_Mode.

Definition at line 282 of file gcm.cpp.

References BOTAN_ARG_CHECK, Botan::GCM_Mode::m_ctr, Botan::GCM_Mode::m_ghash, and Botan::GCM_Mode::update_granularity().

283  {
284  BOTAN_ARG_CHECK(sz % update_granularity() == 0);
285  m_ghash->update(buf, sz);
286  m_ctr->cipher(buf, buf, sz);
287  return sz;
288  }
std::unique_ptr< StreamCipher > m_ctr
Definition: gcm.h:52
size_t update_granularity() const override
Definition: gcm.cpp:210
std::unique_ptr< GHASH > m_ghash
Definition: gcm.h:53
#define BOTAN_ARG_CHECK(expr)
Definition: exceptn.h:44
std::string Botan::GCM_Mode::provider ( ) const
overridevirtualinherited
Returns
provider information about this implementation. Default is "base", might also return "sse2", "avx2", "openssl", or some other arbitrary string.

Reimplemented from Botan::Cipher_Mode.

Definition at line 200 of file gcm.cpp.

201  {
202 #if defined(BOTAN_HAS_GCM_CLMUL)
203  if(CPUID::has_clmul())
204  return "clmul";
205 #endif
206 
207  return "base";
208  }
void Botan::GCM_Mode::reset ( )
overridevirtualinherited

Resets just the message specific state and allows encrypting again under the existing key

Implements Botan::Cipher_Mode.

Definition at line 190 of file gcm.cpp.

References Botan::GCM_Mode::m_ghash.

Referenced by Botan::GCM_Mode::clear().

191  {
192  m_ghash->reset();
193  }
std::unique_ptr< GHASH > m_ghash
Definition: gcm.h:53
template<typename Alloc >
void Botan::AEAD_Mode::set_ad ( const std::vector< uint8_t, Alloc > &  ad)
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.

See set_associated_data().

Parameters
adthe associated data

Definition at line 66 of file aead.h.

Referenced by Botan::TLS::write_record().

67  {
68  set_associated_data(ad.data(), ad.size());
69  }
virtual void set_associated_data(const uint8_t ad[], size_t ad_len)=0
void Botan::GCM_Mode::set_associated_data ( const uint8_t  ad[],
size_t  ad_len 
)
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.

Parameters
adthe associated data
ad_lenlength of add in bytes

Implements Botan::AEAD_Mode.

Definition at line 232 of file gcm.cpp.

References Botan::GCM_Mode::m_ghash.

233  {
234  m_ghash->set_associated_data(ad, ad_len);
235  }
std::unique_ptr< GHASH > m_ghash
Definition: gcm.h:53
template<typename Alloc >
void Botan::AEAD_Mode::set_associated_data_vec ( const std::vector< uint8_t, Alloc > &  ad)
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.

See set_associated_data().

Parameters
adthe associated data

Definition at line 51 of file aead.h.

52  {
53  set_associated_data(ad.data(), ad.size());
54  }
virtual void set_associated_data(const uint8_t ad[], size_t ad_len)=0
template<typename Alloc >
void Botan::Cipher_Mode::set_key ( const std::vector< uint8_t, Alloc > &  key)
inlineinherited

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

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

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

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

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

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
size_t Botan::GCM_Mode::tag_size ( ) const
inlineoverridevirtualinherited
Returns
the size of the authentication tag used (in bytes)

Reimplemented from Botan::Cipher_Mode.

Definition at line 37 of file gcm.h.

Referenced by Botan::GCM_Encryption::finish(), finish(), and Botan::GCM_Mode::name().

37 { return m_tag_size; }
const size_t m_tag_size
Definition: gcm.h:49
void Botan::Cipher_Mode::update ( secure_vector< uint8_t > &  buffer,
size_t  offset = 0 
)
inlineinherited

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
size_t Botan::GCM_Mode::update_granularity ( ) const
overridevirtualinherited
Returns
size of required blocks to update

Implements Botan::Cipher_Mode.

Definition at line 210 of file gcm.cpp.

Referenced by Botan::GCM_Encryption::process(), and process().

211  {
212  return GCM_BS;
213  }
bool Botan::Cipher_Mode::valid_keylength ( size_t  length) const
inlineinherited

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
bool Botan::GCM_Mode::valid_nonce_length ( size_t  nonce_len) const
inlineoverridevirtualinherited
Returns
true iff nonce_len is a valid length for the nonce

Implements Botan::Cipher_Mode.

Definition at line 35 of file gcm.h.

35 { return true; }

Member Data Documentation

const size_t Botan::GCM_Mode::m_BS = 16
protectedinherited

Definition at line 47 of file gcm.h.

const std::string Botan::GCM_Mode::m_cipher_name
protectedinherited

Definition at line 50 of file gcm.h.

Referenced by Botan::GCM_Mode::name().

std::unique_ptr<StreamCipher> Botan::GCM_Mode::m_ctr
protectedinherited
std::unique_ptr<GHASH> Botan::GCM_Mode::m_ghash
protectedinherited
const size_t Botan::GCM_Mode::m_tag_size
protectedinherited

Definition at line 49 of file gcm.h.

Referenced by Botan::GCM_Mode::GCM_Mode().


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