Botan 3.13.0
Crypto and TLS for C&
Botan::GCM_SIV_Decryption Class Referencefinal

#include <gcm_siv.h>

Inheritance diagram for Botan::GCM_SIV_Decryption:
Botan::GCM_SIV_Mode Botan::AEAD_Mode Botan::Cipher_Mode Botan::SymmetricAlgorithm

Public Member Functions

bool associated_data_requires_key () const final
 The AD is buffered as-is; it is not processed until finish.
bool authenticated () const
void clear () final
size_t default_nonce_length () const override
void finish (secure_vector< uint8_t > &final_block, size_t offset=0)
template<concepts::resizable_byte_buffer T>
void finish (T &final_block, size_t offset=0)
 GCM_SIV_Decryption (std::unique_ptr< BlockCipher > cipher)
bool has_keying_material () const final
size_t ideal_granularity () const final
Key_Length_Specification key_spec () const final
virtual size_t maximum_associated_data_inputs () const
size_t maximum_keylength () const
size_t minimum_final_size () const override
size_t minimum_keylength () const
std::string name () const final
size_t output_length (size_t input_length) const override
size_t process (std::span< uint8_t > msg)
size_t process (uint8_t msg[], size_t msg_len)
std::string provider () const final
bool requires_entire_message () const final
void reset () final
void set_ad (std::span< const uint8_t > ad)
void set_associated_data (const uint8_t ad[], size_t ad_len)
void set_associated_data (std::span< const uint8_t > ad)
void set_associated_data_n (size_t idx, std::span< const uint8_t > ad) final
template<typename Alloc>
void set_associated_data_vec (const std::vector< uint8_t, Alloc > &ad)
void set_key (const OctetString &key)
void set_key (const uint8_t key[], size_t length)
void set_key (std::span< const uint8_t > key)
void start ()
void start (const uint8_t nonce[], size_t nonce_len)
void start (std::span< const uint8_t > nonce)
size_t tag_size () const final
template<concepts::resizable_byte_buffer T>
void update (T &buffer, size_t offset=0)
size_t update_granularity () const final
bool valid_keylength (size_t length) const
bool valid_nonce_length (size_t len) const final

Static Public Member Functions

static std::unique_ptr< AEAD_Modecreate (std::string_view algo, Cipher_Dir direction, std::string_view provider="")
static std::unique_ptr< AEAD_Modecreate_or_throw (std::string_view algo, Cipher_Dir direction, std::string_view provider="")
static std::vector< std::string > providers (std::string_view algo_spec)

Protected Member Functions

void assert_key_material_set () const
void assert_key_material_set (bool predicate) const
std::array< uint8_t, BScompute_tag (std::span< const uint8_t > ptext)
 Compute the expected tag for the (unpadded) plaintext.
void ctr_xor (std::span< const uint8_t, BS > tag, uint8_t buf[], size_t len)
 XOR the buffer with the CTR keystream, starting from the tag-derived counter.
bool in_msg () const
secure_vector< uint8_t > & msg_buf ()

Static Protected Attributes

static constexpr size_t BS = 16
static constexpr uint64_t MAX_INPUT_LEN = static_cast<uint64_t>(1) << 36
 RFC 8452 limits both the plaintext and the AD to 2**36 bytes.

Detailed Description

GCM-SIV Decryption

Definition at line 111 of file gcm_siv.h.

Constructor & Destructor Documentation

◆ GCM_SIV_Decryption()

Botan::GCM_SIV_Decryption::GCM_SIV_Decryption ( std::unique_ptr< BlockCipher > cipher)
inlineexplicit
Parameters
cipherthe 128 bit block cipher to use

Definition at line 116 of file gcm_siv.h.

116: GCM_SIV_Mode(std::move(cipher)) {}
GCM_SIV_Mode(std::unique_ptr< BlockCipher > cipher)
Definition gcm_siv.cpp:44

References Botan::GCM_SIV_Mode::GCM_SIV_Mode().

Member Function Documentation

◆ assert_key_material_set() [1/2]

◆ assert_key_material_set() [2/2]

void Botan::SymmetricAlgorithm::assert_key_material_set ( bool predicate) const
inlineprotectedinherited

Throw Key_Not_Set unless the predicate holds

Parameters
predicateif false, a Key_Not_Set exception is thrown

Definition at line 186 of file sym_algo.h.

186 {
187 if(!predicate) {
188 throw_key_not_set_error();
189 }
190 }

◆ associated_data_requires_key()

bool Botan::GCM_SIV_Mode::associated_data_requires_key ( ) const
inlinefinalvirtualinherited

The AD is buffered as-is; it is not processed until finish.

Reimplemented from Botan::AEAD_Mode.

Definition at line 40 of file gcm_siv.h.

40{ return false; }

◆ authenticated()

bool Botan::Cipher_Mode::authenticated ( ) const
inlineinherited

Return the length in bytes of the authentication tag this algorithm generates. If the mode is not authenticated, this will return 0.

Returns
true iff this mode provides authentication as well as confidentiality.

Definition at line 272 of file cipher_mode.h.

272{ return this->tag_size() > 0; }
virtual size_t tag_size() const

References tag_size().

◆ clear()

void Botan::GCM_SIV_Mode::clear ( )
finalvirtualinherited

Reset the internal state. This includes not just the key, but any partial message that may have been in process.

Implements Botan::SymmetricAlgorithm.

Definition at line 52 of file gcm_siv.cpp.

52 {
53 m_cipher->clear();
54 m_kgk_len = 0;
55 zap(m_ad);
56 reset();
57}
void reset() final
Definition gcm_siv.cpp:59
void zap(std::vector< T, Alloc > &vec)
Definition secmem.h:261

References reset(), and Botan::zap().

◆ compute_tag()

std::array< uint8_t, GCM_SIV_Mode::BS > Botan::GCM_SIV_Mode::compute_tag ( std::span< const uint8_t > ptext)
protectedinherited

Compute the expected tag for the (unpadded) plaintext.

Definition at line 169 of file gcm_siv.cpp.

169 {
170 m_polyval.update(m_ad);
171 m_polyval.zero_pad();
172 m_polyval.update(ptext);
173 m_polyval.zero_pad();
174
175 const uint64_t ad_bits = 8 * static_cast<uint64_t>(m_ad.size());
176 const uint64_t pt_bits = 8 * static_cast<uint64_t>(ptext.size());
177 m_polyval.update(store_le(ad_bits, pt_bits));
178
179 std::array<uint8_t, BS> S{};
180 m_polyval.final(S);
181
182 /*
183 RFC 8452 section 4: "XOR the first twelve bytes of S_s with the nonce
184 and clear the most significant bit of the last byte. Encrypt the
185 result with AES using the message-encryption key to produce the tag."
186 */
187 xor_buf(S.data(), m_nonce.data(), m_nonce.size());
188 S[15] &= 0x7f;
189 m_msg_cipher->encrypt(S);
190
191 return S;
192}
constexpr auto store_le(ParamTs &&... params)
Definition loadstor.h:736
constexpr void xor_buf(ranges::contiguous_output_range< uint8_t > auto &&out, ranges::contiguous_range< uint8_t > auto &&in)
Definition mem_ops.h:403

References Botan::store_le(), and Botan::xor_buf().

◆ create()

std::unique_ptr< AEAD_Mode > Botan::AEAD_Mode::create ( std::string_view algo,
Cipher_Dir direction,
std::string_view provider = "" )
staticinherited

Create an AEAD mode

Parameters
algothe algorithm to create
directionspecify if this should be an encryption or decryption AEAD
provideroptional specification for provider to use
Returns
an AEAD mode or a null pointer if not available

Definition at line 63 of file aead.cpp.

63 {
65#if defined(BOTAN_HAS_AEAD_CHACHA20_POLY1305)
66 if(algo == "ChaCha20Poly1305") {
67 if(dir == Cipher_Dir::Encryption) {
68 return std::make_unique<ChaCha20Poly1305_Encryption>();
69 } else {
70 return std::make_unique<ChaCha20Poly1305_Decryption>();
71 }
72 }
73#endif
74
75#if defined(BOTAN_HAS_ASCON_AEAD128)
76 if(algo == "Ascon-AEAD128") {
77 if(dir == Cipher_Dir::Encryption) {
78 return std::make_unique<Ascon_AEAD128_Encryption>();
79 } else {
80 return std::make_unique<Ascon_AEAD128_Decryption>();
81 }
82 }
83#endif
84
85 if(algo.find('/') != std::string::npos) {
86 const std::vector<std::string> algo_parts = split_on(algo, '/');
87 if(algo_parts.size() < 2) {
88 return std::unique_ptr<AEAD_Mode>();
89 }
90 const std::string_view cipher_name = algo_parts[0];
91 const std::vector<std::string> mode_info = parse_algorithm_name(algo_parts[1]);
92
93 if(mode_info.empty()) {
94 return std::unique_ptr<AEAD_Mode>();
95 }
96
97 std::ostringstream mode_name;
98
99 mode_name << mode_info[0] << '(' << cipher_name;
100 for(size_t i = 1; i < mode_info.size(); ++i) {
101 mode_name << ',' << mode_info[i];
102 }
103 for(size_t i = 2; i < algo_parts.size(); ++i) {
104 mode_name << ',' << algo_parts[i];
105 }
106 mode_name << ')';
107
108 return AEAD_Mode::create(mode_name.str(), dir);
109 }
110
111#if defined(BOTAN_HAS_BLOCK_CIPHER)
112
113 const SCAN_Name req(algo);
114
115 if(req.arg_count() == 0) {
116 return std::unique_ptr<AEAD_Mode>();
117 }
118
119 auto bc = BlockCipher::create(req.arg(0), provider);
120
121 if(!bc) {
122 return std::unique_ptr<AEAD_Mode>();
123 }
124
125 #if defined(BOTAN_HAS_AEAD_CCM)
126 if(req.algo_name() == "CCM") {
127 const size_t tag_len = req.arg_as_integer(1, 16);
128 const size_t L_len = req.arg_as_integer(2, 3);
129 if(dir == Cipher_Dir::Encryption) {
130 return std::make_unique<CCM_Encryption>(std::move(bc), tag_len, L_len);
131 } else {
132 return std::make_unique<CCM_Decryption>(std::move(bc), tag_len, L_len);
133 }
134 }
135 #endif
136
137 #if defined(BOTAN_HAS_AEAD_GCM)
138 if(req.algo_name() == "GCM") {
139 const size_t tag_len = req.arg_as_integer(1, 16);
140 if(dir == Cipher_Dir::Encryption) {
141 return std::make_unique<GCM_Encryption>(std::move(bc), tag_len);
142 } else {
143 return std::make_unique<GCM_Decryption>(std::move(bc), tag_len);
144 }
145 }
146 #endif
147
148 #if defined(BOTAN_HAS_AEAD_GCM_SIV)
149 if(req.algo_name() == "GCM-SIV") {
150 // Unlike GCM the tag length is fixed, so reject eg "AES-128/GCM-SIV(12)"
151 if(req.arg_count() != 1) {
152 return std::unique_ptr<AEAD_Mode>();
153 }
154 if(dir == Cipher_Dir::Encryption) {
155 return std::make_unique<GCM_SIV_Encryption>(std::move(bc));
156 } else {
157 return std::make_unique<GCM_SIV_Decryption>(std::move(bc));
158 }
159 }
160 #endif
161
162 #if defined(BOTAN_HAS_AEAD_OCB)
163 if(req.algo_name() == "OCB") {
164 const size_t tag_len = req.arg_as_integer(1, 16);
165 if(dir == Cipher_Dir::Encryption) {
166 return std::make_unique<OCB_Encryption>(std::move(bc), tag_len);
167 } else {
168 return std::make_unique<OCB_Decryption>(std::move(bc), tag_len);
169 }
170 }
171 #endif
172
173 #if defined(BOTAN_HAS_AEAD_EAX)
174 if(req.algo_name() == "EAX") {
175 const size_t tag_len = req.arg_as_integer(1, bc->block_size());
176 if(dir == Cipher_Dir::Encryption) {
177 return std::make_unique<EAX_Encryption>(std::move(bc), tag_len);
178 } else {
179 return std::make_unique<EAX_Decryption>(std::move(bc), tag_len);
180 }
181 }
182 #endif
183
184 #if defined(BOTAN_HAS_AEAD_SIV)
185 if(req.algo_name() == "SIV") {
186 if(dir == Cipher_Dir::Encryption) {
187 return std::make_unique<SIV_Encryption>(std::move(bc));
188 } else {
189 return std::make_unique<SIV_Decryption>(std::move(bc));
190 }
191 }
192 #endif
193
194#endif
195
196 return std::unique_ptr<AEAD_Mode>();
197}
#define BOTAN_UNUSED
Definition assert.h:144
static std::unique_ptr< AEAD_Mode > create(std::string_view algo, Cipher_Dir direction, std::string_view provider="")
Definition aead.cpp:63
static std::unique_ptr< BlockCipher > create(std::string_view algo_spec, std::string_view provider="")
virtual std::string provider() const
std::vector< std::string > split_on(std::string_view str, char delim)
Definition parsing.cpp:141
std::vector< std::string > parse_algorithm_name(std::string_view scan_name)
Definition parsing.cpp:87

References Botan::SCAN_Name::algo_name(), Botan::SCAN_Name::arg(), Botan::SCAN_Name::arg_as_integer(), Botan::SCAN_Name::arg_count(), BOTAN_UNUSED, create(), Botan::BlockCipher::create(), Botan::Encryption, Botan::parse_algorithm_name(), Botan::Cipher_Mode::provider(), and Botan::split_on().

Referenced by Botan::ChaCha20Poly1305_Mode::ChaCha20Poly1305_Mode(), create(), Botan::Cipher_Mode::create(), create_or_throw(), Botan::get_aead(), and Botan::TLS::Cipher_State::is_compatible_with().

◆ create_or_throw()

std::unique_ptr< AEAD_Mode > Botan::AEAD_Mode::create_or_throw ( std::string_view algo,
Cipher_Dir direction,
std::string_view provider = "" )
staticinherited

Create an AEAD mode, or throw

Parameters
algothe algorithm to create
directionspecify if this should be an encryption or decryption AEAD
provideroptional specification for provider to use
Returns
an AEAD mode, or throw an exception

Definition at line 53 of file aead.cpp.

55 {
56 if(auto aead = AEAD_Mode::create(algo, dir, provider)) {
57 return aead;
58 }
59
60 throw Lookup_Error("AEAD", algo, provider);
61}

References create(), and Botan::Cipher_Mode::provider().

Referenced by Botan::TLS::Cipher_State::advance_with_server_hello(), Botan::TLS::Connection_Cipher_State::Connection_Cipher_State(), Botan::TLS::Session::decrypt(), and Botan::TLS::Session::encrypt().

◆ ctr_xor()

void Botan::GCM_SIV_Mode::ctr_xor ( std::span< const uint8_t, BS > tag,
uint8_t buf[],
size_t len )
protectedinherited

XOR the buffer with the CTR keystream, starting from the tag-derived counter.

Definition at line 194 of file gcm_siv.cpp.

194 {
195 /*
196 RFC 8452 section 4: "The initial counter block is the tag with the
197 most significant bit of the last byte set to one. The counter
198 advances by incrementing the first 32 bits interpreted as an
199 unsigned, little-endian integer, wrapping at 2^32."
200 */
201 std::array<uint8_t, BS> ctr_block{};
202 copy_mem(ctr_block, tag);
203 ctr_block[15] |= 0x80;
204
205 uint32_t ctr32 = load_le<uint32_t>(ctr_block.data(), 0);
206
207 secure_vector<uint8_t> ks(m_msg_cipher->parallel_bytes());
208
209 while(len > 0) {
210 const size_t blocks = std::min((len + BS - 1) / BS, ks.size() / BS);
211
212 for(size_t i = 0; i != blocks; ++i) {
213 copy_mem(&ks[BS * i], ctr_block.data(), BS);
214 store_le(ctr32, &ks[BS * i]);
215 ctr32 += 1;
216 }
217
218 m_msg_cipher->encrypt_n(ks.data(), ks.data(), blocks);
219
220 const size_t todo = std::min(len, blocks * BS);
221 xor_buf(buf, ks.data(), todo);
222 buf += todo;
223 len -= todo;
224 }
225}
static constexpr size_t BS
Definition gcm_siv.h:55
constexpr void copy_mem(T *out, const T *in, size_t n)
Definition mem_ops.h:144
constexpr auto load_le(ParamTs &&... params)
Definition loadstor.h:495
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:128

References BS, Botan::copy_mem(), Botan::load_le(), Botan::store_le(), and Botan::xor_buf().

◆ default_nonce_length()

size_t Botan::AEAD_Mode::default_nonce_length ( ) const
inlineoverridevirtualinherited

Return the default nonce length for this mode

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::Ascon_AEAD128_Mode, Botan::CCM_Mode, and Botan::TLS::TLS_CBC_HMAC_AEAD_Mode.

Definition at line 139 of file aead.h.

139{ return 12; }

◆ finish() [1/2]

void Botan::Cipher_Mode::finish ( secure_vector< uint8_t > & final_block,
size_t offset = 0 )
inlineinherited

Complete procession of a message with a final input of buffer, which is treated the same as with update(). If you have the entire message in hand, calling finish() without ever calling update() is both efficient and convenient.

When using an AEAD_Mode, if the supplied authentication tag does not validate, this will throw an instance of Invalid_Authentication_Tag.

If this occurs, all plaintext previously output via calls to update must be destroyed and not used in any way that an attacker could observe the effects of. This could be anything from echoing the plaintext back (perhaps in an error message), or by making an external RPC whose destination or contents depend on the plaintext. The only thing you can do is buffer it, and in the event of an invalid tag, erase the previously decrypted content from memory.

One simple way to assure this could never happen is to never call update, and instead always marshal the entire message into a single buffer and call finish on it when decrypting.

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

Definition at line 185 of file cipher_mode.h.

185{ finish_msg(final_block, offset); }
virtual void finish_msg(secure_vector< uint8_t > &final_block, size_t offset=0)=0

References finish_msg().

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

◆ finish() [2/2]

template<concepts::resizable_byte_buffer T>
void Botan::Cipher_Mode::finish ( T & final_block,
size_t offset = 0 )
inlineinherited

Complete procession of a message.

Note: Using this overload with anything but a Botan::secure_vector<> is copying the bytes in the in/out buffer.

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

Definition at line 198 of file cipher_mode.h.

198 {
199 Botan::secure_vector<uint8_t> tmp(final_block.begin(), final_block.end());
200 finish_msg(tmp, offset);
201 final_block.resize(tmp.size());
202 std::copy(tmp.begin(), tmp.end(), final_block.begin());
203 }

References finish_msg().

◆ has_keying_material()

bool Botan::GCM_SIV_Mode::has_keying_material ( ) const
finalvirtualinherited

Test whether a key has been set on this object

Returns
true if a key has been set on this object

Implements Botan::SymmetricAlgorithm.

Definition at line 92 of file gcm_siv.cpp.

92 {
93 return m_cipher->has_keying_material();
94}

◆ ideal_granularity()

size_t Botan::GCM_SIV_Mode::ideal_granularity ( ) const
finalvirtualinherited

Return an ideal granularity. This will be a multiple of the result of update_granularity but may be larger. If so it indicates that better performance may be achieved by providing buffers that are at least that size (due to SIMD execution, etc).

Implements Botan::Cipher_Mode.

Definition at line 80 of file gcm_siv.cpp.

80 {
81 return BS * std::max<size_t>(2, BlockCipher::ParallelismMult);
82}
static constexpr size_t ParallelismMult

References BS, and Botan::BlockCipher::ParallelismMult.

◆ in_msg()

bool Botan::GCM_SIV_Mode::in_msg ( ) const
inlineprotectedinherited

Definition at line 62 of file gcm_siv.h.

62{ return m_in_msg; }

◆ key_spec()

Key_Length_Specification Botan::GCM_SIV_Mode::key_spec ( ) const
finalvirtualinherited

Return the key lengths supported by this algorithm

Returns
object describing limits on key size

Implements Botan::SymmetricAlgorithm.

Definition at line 88 of file gcm_siv.cpp.

88 {
89 return m_key_spec;
90}

◆ maximum_associated_data_inputs()

virtual size_t Botan::AEAD_Mode::maximum_associated_data_inputs ( ) const
inlinevirtualinherited

Returns the maximum supported number of associated data inputs which can be provided to set_associated_data_n

If returns 0, then no associated data is supported.

Reimplemented in Botan::SIV_Mode.

Definition at line 99 of file aead.h.

99{ return 1; }

◆ maximum_keylength()

size_t Botan::SymmetricAlgorithm::maximum_keylength ( ) const
inlineinherited

Return the largest acceptable key length

Returns
maximum allowed key length

Definition at line 130 of file sym_algo.h.

130{ return key_spec().maximum_keylength(); }
size_t maximum_keylength() const
Definition sym_algo.h:58
virtual Key_Length_Specification key_spec() const =0

References key_spec().

◆ minimum_final_size()

size_t Botan::GCM_SIV_Decryption::minimum_final_size ( ) const
inlineoverridevirtual

Return the smallest input accepted by finish()

Returns
required minimum size to finalize() - may be any length larger than this.

Implements Botan::Cipher_Mode.

Definition at line 120 of file gcm_siv.h.

120{ return tag_size(); }
size_t tag_size() const final
Definition gcm_siv.h:35

References Botan::GCM_SIV_Mode::tag_size().

◆ minimum_keylength()

size_t Botan::SymmetricAlgorithm::minimum_keylength ( ) const
inlineinherited

Return the smallest acceptable key length

Returns
minimum allowed key length

Definition at line 136 of file sym_algo.h.

136{ return key_spec().minimum_keylength(); }
size_t minimum_keylength() const
Definition sym_algo.h:52

References key_spec().

◆ msg_buf()

secure_vector< uint8_t > & Botan::GCM_SIV_Mode::msg_buf ( )
inlineprotectedinherited

Definition at line 60 of file gcm_siv.h.

60{ return m_msg_buf; }

References msg_buf().

Referenced by msg_buf().

◆ name()

std::string Botan::GCM_SIV_Mode::name ( ) const
finalvirtualinherited

Return the name of this algorithm

Returns
the algorithm name

Implements Botan::SymmetricAlgorithm.

Definition at line 68 of file gcm_siv.cpp.

68 {
69 return fmt("{}/GCM-SIV", m_cipher_name);
70}
std::string fmt(std::string_view format, const T &... args)
Definition fmt.h:53

References Botan::fmt().

Referenced by GCM_SIV_Mode().

◆ output_length()

size_t Botan::GCM_SIV_Decryption::output_length ( size_t input_length) const
overridevirtual

Returns the size of the output if this transform is used to process a message with input_length bytes. In most cases the answer is precise. If it is not possible to precise (namely for CBC decryption) instead an upper bound is returned.

Implements Botan::Cipher_Mode.

Definition at line 249 of file gcm_siv.cpp.

249 {
250 BOTAN_ARG_CHECK(input_length >= tag_size(), "Message too short to be valid");
251 return input_length - tag_size();
252}
#define BOTAN_ARG_CHECK(expr, msg)
Definition assert.h:33

References BOTAN_ARG_CHECK, and Botan::GCM_SIV_Mode::tag_size().

◆ process() [1/2]

size_t Botan::Cipher_Mode::process ( std::span< uint8_t > msg)
inlineinherited

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
Returns
bytes written in-place

Definition at line 132 of file cipher_mode.h.

132{ return this->process_msg(msg.data(), msg.size()); }
virtual size_t process_msg(uint8_t msg[], size_t msg_len)=0

References process_msg().

Referenced by botan_cipher_update(), Botan::TLS::TLS_NULL_HMAC_AEAD_Decryption::finish_msg(), and update().

◆ process() [2/2]

size_t Botan::Cipher_Mode::process ( uint8_t msg[],
size_t msg_len )
inlineinherited

Process message blocks in place

Parameters
msgthe message to be processed
msg_lenlength of msg in bytes
Returns
bytes written in-place

Definition at line 140 of file cipher_mode.h.

140{ return this->process_msg(msg, msg_len); }

References process_msg().

◆ provider()

std::string Botan::GCM_SIV_Mode::provider ( ) const
finalvirtualinherited

Return the name of the provider implementing this object

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 72 of file gcm_siv.cpp.

72 {
73 return m_polyval.provider();
74}

◆ providers()

std::vector< std::string > Botan::Cipher_Mode::providers ( std::string_view algo_spec)
staticinherited

List the providers available for a given cipher mode

Returns
list of available providers for this algorithm, empty if not available
Parameters
algo_specalgorithm name

Definition at line 174 of file cipher_mode.cpp.

174 {
175 const std::vector<std::string>& possible = {"base", "commoncrypto"};
176 std::vector<std::string> providers;
177 for(auto&& prov : possible) {
178 auto mode = Cipher_Mode::create(algo_spec, Cipher_Dir::Encryption, prov);
179 if(mode) {
180 providers.push_back(prov); // available
181 }
182 }
183 return providers;
184}
static std::unique_ptr< Cipher_Mode > create(std::string_view algo, Cipher_Dir direction, std::string_view provider="")
static std::vector< std::string > providers(std::string_view algo_spec)

References create(), Botan::Encryption, and providers().

Referenced by providers().

◆ requires_entire_message()

bool Botan::GCM_SIV_Mode::requires_entire_message ( ) const
inlinefinalvirtualinherited

Certain modes require the entire message be available before any processing can occur. For such modes, input will be consumed but not returned, until finish is called, which returns the entire message.

This function returns true if this mode has this style of operation.

Reimplemented from Botan::Cipher_Mode.

Definition at line 37 of file gcm_siv.h.

37{ return true; }

◆ reset()

void Botan::GCM_SIV_Mode::reset ( )
finalvirtualinherited

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

Implements Botan::Cipher_Mode.

Definition at line 59 of file gcm_siv.cpp.

59 {
60 // The derived keys are per-message; start_msg rekeys both
61 m_msg_cipher->clear();
62 m_polyval.clear();
63 secure_scrub_memory(m_nonce);
64 m_msg_buf.clear();
65 m_in_msg = false;
66}
void secure_scrub_memory(void *ptr, size_t n)
Definition mem_utils.cpp:25

References Botan::secure_scrub_memory().

Referenced by clear().

◆ set_ad()

void Botan::AEAD_Mode::set_ad ( std::span< const uint8_t > 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 132 of file aead.h.

132{ set_associated_data(ad); }
void set_associated_data(std::span< const uint8_t > ad)
Definition aead.h:59

References set_ad(), and set_associated_data().

Referenced by set_ad().

◆ set_associated_data() [1/2]

void Botan::AEAD_Mode::set_associated_data ( const uint8_t ad[],
size_t ad_len )
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().

Parameters
adthe associated data
ad_lenlength of ad in bytes

Definition at line 69 of file aead.h.

69{ set_associated_data(std::span(ad, ad_len)); }

References set_associated_data().

Referenced by set_associated_data().

◆ set_associated_data() [2/2]

void Botan::AEAD_Mode::set_associated_data ( std::span< const uint8_t > 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().

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

Definition at line 59 of file aead.h.

59{ set_associated_data_n(0, ad); }
virtual void set_associated_data_n(size_t idx, std::span< const uint8_t > ad)=0

References set_associated_data_n().

Referenced by set_ad(), set_associated_data_vec(), and Botan::TLS::write_record().

◆ set_associated_data_n()

void Botan::GCM_SIV_Mode::set_associated_data_n ( size_t idx,
std::span< const uint8_t > ad )
finalvirtualinherited

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.

Some AEADs (namely SIV) support multiple AD inputs. For all other modes only nominal AD input 0 is supported; all other values of idx will cause an exception.

Derived AEADs must implement this. For AEADs where maximum_associated_data_inputs() returns 1 (the default), the idx must simply be ignored.

Parameters
idxwhich associated data to set
adthe associated data

Implements Botan::AEAD_Mode.

Definition at line 102 of file gcm_siv.cpp.

102 {
103 BOTAN_ARG_CHECK(idx == 0, "GCM-SIV: cannot handle non-zero index in set_associated_data_n");
104 BOTAN_STATE_CHECK(!m_in_msg);
105 BOTAN_ARG_CHECK(static_cast<uint64_t>(ad.size()) <= MAX_INPUT_LEN, "GCM-SIV AD too large");
106 m_ad.assign(ad.begin(), ad.end());
107}
#define BOTAN_STATE_CHECK(expr)
Definition assert.h:49
static constexpr uint64_t MAX_INPUT_LEN
RFC 8452 limits both the plaintext and the AD to 2**36 bytes.
Definition gcm_siv.h:58

References BOTAN_ARG_CHECK, BOTAN_STATE_CHECK, and MAX_INPUT_LEN.

◆ set_associated_data_vec()

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 119 of file aead.h.

119 {
121 }

References set_associated_data(), and set_associated_data_vec().

Referenced by set_associated_data_vec().

◆ set_key() [1/3]

◆ set_key() [2/3]

void Botan::SymmetricAlgorithm::set_key ( const uint8_t key[],
size_t length )
inlineinherited

Set the symmetric key of this object.

Parameters
keythe to be set as a byte array.
lengthin bytes of key param

Definition at line 162 of file sym_algo.h.

162{ set_key(std::span{key, length}); }

References set_key().

Referenced by set_key().

◆ set_key() [3/3]

void Botan::SymmetricAlgorithm::set_key ( std::span< const uint8_t > key)
inherited

Set the symmetric key of this object.

Parameters
keythe contiguous byte range to be set.

Definition at line 22 of file sym_algo.cpp.

22 {
23 if(!valid_keylength(key.size())) {
24 throw Invalid_Key_Length(name(), key.size());
25 }
26 key_schedule(key);
27}
bool valid_keylength(size_t length) const
Definition sym_algo.h:143
virtual std::string name() const =0

References name(), and valid_keylength().

◆ start() [1/3]

void Botan::Cipher_Mode::start ( )
inlineinherited

Begin processing a message.

The exact semantics of this depend on the mode. For many modes, the call will fail since a nonce must be provided.

For certain modes such as CBC this will instead cause the last ciphertext block to be used as the nonce of the new message; doing this isn't a good idea, but some (mostly older) protocols do this.

Definition at line 117 of file cipher_mode.h.

117{ return start_msg(nullptr, 0); }
virtual void start_msg(const uint8_t nonce[], size_t nonce_len)=0

References start_msg().

◆ start() [2/3]

void Botan::Cipher_Mode::start ( const uint8_t nonce[],
size_t nonce_len )
inlineinherited

Begin processing a message with a fresh nonce.

Parameters
noncethe per message nonce
nonce_lenlength of nonce

Definition at line 105 of file cipher_mode.h.

105{ start_msg(nonce, nonce_len); }

References start_msg().

◆ start() [3/3]

void Botan::Cipher_Mode::start ( std::span< const uint8_t > nonce)
inlineinherited

Begin processing a message with a fresh nonce.

Warning
Typically one must not reuse the same nonce for more than one message under the same key. For most cipher modes this would mean total loss of security and/or authenticity guarantees.
Note
If reliably generating unique nonces is difficult in your environment, use SIV which retains security even if nonces are repeated.
Parameters
noncethe per message nonce

Definition at line 98 of file cipher_mode.h.

98{ start_msg(nonce.data(), nonce.size()); }

References start_msg().

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

◆ tag_size()

size_t Botan::GCM_SIV_Mode::tag_size ( ) const
inlinefinalvirtualinherited

Return the authentication tag length of this mode

Returns
the size of the authentication tag used (in bytes)

Reimplemented from Botan::Cipher_Mode.

Definition at line 35 of file gcm_siv.h.

35{ return 16; }

Referenced by Botan::GCM_SIV_Decryption::minimum_final_size(), Botan::GCM_SIV_Decryption::output_length(), and Botan::GCM_SIV_Encryption::output_length().

◆ update()

template<concepts::resizable_byte_buffer T>
void Botan::Cipher_Mode::update ( T & buffer,
size_t offset = 0 )
inlineinherited

Process some data. Input must be in size update_granularity() uint8_t blocks. The buffer is an in/out parameter and may be resized. In particular, some modes require that all input be consumed before any output is produced; with these modes, buffer will be returned empty.

The first offset bytes of buffer will be ignored (this allows in place processing of a buffer that contains an initial plaintext header).

Parameters
bufferin/out parameter which will possibly be resized
offsetan offset into blocks to begin processing

Definition at line 155 of file cipher_mode.h.

155 {
156 const size_t written = process(std::span(buffer).subspan(offset));
157 buffer.resize(offset + written);
158 }
size_t process(std::span< uint8_t > msg)

References process().

◆ update_granularity()

size_t Botan::GCM_SIV_Mode::update_granularity ( ) const
finalvirtualinherited

The :cpp:class:Cipher_Mode interface requires message processing in multiples of the block size. This returns size of required blocks to update. If the mode implementation does not require buffering it will return 1.

Returns
size of required blocks to update

Implements Botan::Cipher_Mode.

Definition at line 76 of file gcm_siv.cpp.

76 {
77 return 1;
78}

◆ valid_keylength()

bool Botan::SymmetricAlgorithm::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 143 of file sym_algo.h.

143{ return key_spec().valid_keylength(length); }
bool valid_keylength(size_t length) const
Definition sym_algo.h:44

References key_spec().

Referenced by set_key().

◆ valid_nonce_length()

bool Botan::GCM_SIV_Mode::valid_nonce_length ( size_t nonce_len) const
finalvirtualinherited

Test if a nonce length is valid for this mode

Returns
true iff nonce_len is a valid length for the nonce

Implements Botan::Cipher_Mode.

Definition at line 84 of file gcm_siv.cpp.

84 {
85 return len == 12;
86}

Member Data Documentation

◆ BS

size_t Botan::GCM_SIV_Mode::BS = 16
staticconstexprprotectedinherited

Definition at line 55 of file gcm_siv.h.

Referenced by ctr_xor(), and ideal_granularity().

◆ MAX_INPUT_LEN

uint64_t Botan::GCM_SIV_Mode::MAX_INPUT_LEN = static_cast<uint64_t>(1) << 36
staticconstexprprotectedinherited

RFC 8452 limits both the plaintext and the AD to 2**36 bytes.

Definition at line 58 of file gcm_siv.h.

Referenced by set_associated_data_n().


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