Botan 3.3.0
Crypto and TLS for C&
Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
Botan::SIV_Mode Class Referenceabstract

#include <siv.h>

Inheritance diagram for Botan::SIV_Mode:
Botan::AEAD_Mode Botan::Cipher_Mode Botan::SymmetricAlgorithm Botan::SIV_Decryption Botan::SIV_Encryption

Public Member Functions

virtual bool associated_data_requires_key () const
 
bool authenticated () const
 
void clear () override 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)
 
bool has_keying_material () const override final
 
size_t ideal_granularity () const override final
 
Key_Length_Specification key_spec () const override final
 
size_t maximum_associated_data_inputs () const override final
 
size_t maximum_keylength () const
 
virtual size_t minimum_final_size () const =0
 
size_t minimum_keylength () const
 
std::string name () const override final
 
virtual size_t output_length (size_t input_length) const =0
 
size_t process (std::span< uint8_t > msg)
 
size_t process (uint8_t msg[], size_t msg_len)
 
virtual std::string provider () const
 
bool requires_entire_message () const override final
 
void reset () override 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 n, std::span< const uint8_t > ad) override final
 
template<typename Alloc >
void set_associated_data_vec (const std::vector< uint8_t, Alloc > &ad)
 
void set_key (const SymmetricKey &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 override final
 
template<concepts::resizable_byte_buffer T>
void update (T &buffer, size_t offset=0)
 
size_t update_granularity () const override final
 
bool valid_keylength (size_t length) const
 
bool valid_nonce_length (size_t) const override final
 
 ~SIV_Mode ()
 

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
 
size_t block_size () const
 
StreamCipherctr ()
 
virtual void finish_msg (secure_vector< uint8_t > &final_block, size_t offset=0)=0
 
secure_vector< uint8_t > & msg_buf ()
 
secure_vector< uint8_t > S2V (const uint8_t text[], size_t text_len)
 
void set_ctr_iv (secure_vector< uint8_t > V)
 
 SIV_Mode (std::unique_ptr< BlockCipher > cipher)
 

Detailed Description

Base class for SIV encryption and decryption (

See also
RFC 5297)

Definition at line 23 of file siv.h.

Constructor & Destructor Documentation

◆ ~SIV_Mode()

Botan::SIV_Mode::~SIV_Mode ( )
default

◆ SIV_Mode()

Botan::SIV_Mode::SIV_Mode ( std::unique_ptr< BlockCipher > cipher)
explicitprotected

Definition at line 19 of file siv.cpp.

19 :
20 m_name(cipher->name() + "/SIV"),
21 m_bs(cipher->block_size()),
22 m_ctr(std::make_unique<CTR_BE>(cipher->new_object(), 8)),
23 m_mac(std::make_unique<CMAC>(std::move(cipher))) {
24 // Not really true but only 128 bit allowed at the moment
25 if(m_bs != 16) {
26 throw Invalid_Argument("SIV requires a 128 bit block cipher");
27 }
28}

Member Function Documentation

◆ assert_key_material_set() [1/2]

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

Definition at line 139 of file sym_algo.h.

virtual bool has_keying_material() const =0
void assert_key_material_set() const
Definition sym_algo.h:139

References Botan::SymmetricAlgorithm::assert_key_material_set().

Referenced by Botan::SymmetricAlgorithm::assert_key_material_set(), Botan::Salsa20::cipher_bytes(), Botan::AES_128::decrypt_n(), Botan::AES_192::decrypt_n(), Botan::AES_256::decrypt_n(), Botan::ARIA_128::decrypt_n(), Botan::ARIA_192::decrypt_n(), Botan::ARIA_256::decrypt_n(), Botan::Blowfish::decrypt_n(), Botan::Camellia_128::decrypt_n(), Botan::Camellia_192::decrypt_n(), Botan::Camellia_256::decrypt_n(), Botan::CAST_128::decrypt_n(), Botan::DES::decrypt_n(), Botan::TripleDES::decrypt_n(), Botan::GOST_28147_89::decrypt_n(), Botan::IDEA::decrypt_n(), Botan::Kuznyechik::decrypt_n(), Botan::Lion::decrypt_n(), Botan::Noekeon::decrypt_n(), Botan::SEED::decrypt_n(), Botan::Serpent::decrypt_n(), Botan::SHACAL2::decrypt_n(), Botan::SM4::decrypt_n(), Botan::Threefish_512::decrypt_n(), Botan::Twofish::decrypt_n(), Botan::AES_128::encrypt_n(), Botan::AES_192::encrypt_n(), Botan::AES_256::encrypt_n(), Botan::ARIA_128::encrypt_n(), Botan::ARIA_192::encrypt_n(), Botan::ARIA_256::encrypt_n(), Botan::Blowfish::encrypt_n(), Botan::Camellia_128::encrypt_n(), Botan::Camellia_192::encrypt_n(), Botan::Camellia_256::encrypt_n(), Botan::CAST_128::encrypt_n(), Botan::DES::encrypt_n(), Botan::TripleDES::encrypt_n(), Botan::GOST_28147_89::encrypt_n(), Botan::IDEA::encrypt_n(), Botan::Kuznyechik::encrypt_n(), Botan::Lion::encrypt_n(), Botan::Noekeon::encrypt_n(), Botan::SEED::encrypt_n(), Botan::Serpent::encrypt_n(), Botan::SHACAL2::encrypt_n(), Botan::SM4::encrypt_n(), Botan::Threefish_512::encrypt_n(), Botan::Twofish::encrypt_n(), Botan::GHASH::final(), Botan::GHASH::ghash_update(), Botan::ChaCha::seek(), Botan::CTR_BE::seek(), Botan::Salsa20::seek(), Botan::OCB_Mode::set_associated_data_n(), Botan::Salsa20::set_iv_bytes(), Botan::GHASH::update(), and Botan::GHASH::update_associated_data().

◆ assert_key_material_set() [2/2]

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

Definition at line 141 of file sym_algo.h.

141 {
142 if(!predicate) {
143 throw_key_not_set_error();
144 }
145 }

◆ associated_data_requires_key()

virtual bool Botan::AEAD_Mode::associated_data_requires_key ( ) const
inlinevirtualinherited

Most AEADs require the key to be set prior to setting the AD A few allow the AD to be set even before the cipher is keyed. Such ciphers would return false from this function.

Reimplemented in Botan::CCM_Mode, and Botan::ChaCha20Poly1305_Mode.

Definition at line 98 of file aead.h.

98{ return true; }

◆ authenticated()

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

Definition at line 223 of file cipher_mode.h.

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

◆ block_size()

size_t Botan::SIV_Mode::block_size ( ) const
inlineprotected

Definition at line 59 of file siv.h.

59{ return m_bs; }

Referenced by maximum_associated_data_inputs(), and S2V().

◆ clear()

void Botan::SIV_Mode::clear ( )
finaloverridevirtual

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 32 of file siv.cpp.

32 {
33 m_ctr->clear();
34 m_mac->clear();
35 reset();
36}
void reset() override final
Definition siv.cpp:38

References reset().

◆ 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 53 of file aead.cpp.

53 {
55#if defined(BOTAN_HAS_AEAD_CHACHA20_POLY1305)
56 if(algo == "ChaCha20Poly1305") {
57 if(dir == Cipher_Dir::Encryption) {
58 return std::make_unique<ChaCha20Poly1305_Encryption>();
59 } else {
60 return std::make_unique<ChaCha20Poly1305_Decryption>();
61 }
62 }
63#endif
64
65 if(algo.find('/') != std::string::npos) {
66 const std::vector<std::string> algo_parts = split_on(algo, '/');
67 std::string_view cipher_name = algo_parts[0];
68 const std::vector<std::string> mode_info = parse_algorithm_name(algo_parts[1]);
69
70 if(mode_info.empty()) {
71 return std::unique_ptr<AEAD_Mode>();
72 }
73
74 std::ostringstream mode_name;
75
76 mode_name << mode_info[0] << '(' << cipher_name;
77 for(size_t i = 1; i < mode_info.size(); ++i) {
78 mode_name << ',' << mode_info[i];
79 }
80 for(size_t i = 2; i < algo_parts.size(); ++i) {
81 mode_name << ',' << algo_parts[i];
82 }
83 mode_name << ')';
84
85 return AEAD_Mode::create(mode_name.str(), dir);
86 }
87
88#if defined(BOTAN_HAS_BLOCK_CIPHER)
89
90 SCAN_Name req(algo);
91
92 if(req.arg_count() == 0) {
93 return std::unique_ptr<AEAD_Mode>();
94 }
95
96 auto bc = BlockCipher::create(req.arg(0), provider);
97
98 if(!bc) {
99 return std::unique_ptr<AEAD_Mode>();
100 }
101
102 #if defined(BOTAN_HAS_AEAD_CCM)
103 if(req.algo_name() == "CCM") {
104 size_t tag_len = req.arg_as_integer(1, 16);
105 size_t L_len = req.arg_as_integer(2, 3);
106 if(dir == Cipher_Dir::Encryption) {
107 return std::make_unique<CCM_Encryption>(std::move(bc), tag_len, L_len);
108 } else {
109 return std::make_unique<CCM_Decryption>(std::move(bc), tag_len, L_len);
110 }
111 }
112 #endif
113
114 #if defined(BOTAN_HAS_AEAD_GCM)
115 if(req.algo_name() == "GCM") {
116 size_t tag_len = req.arg_as_integer(1, 16);
117 if(dir == Cipher_Dir::Encryption) {
118 return std::make_unique<GCM_Encryption>(std::move(bc), tag_len);
119 } else {
120 return std::make_unique<GCM_Decryption>(std::move(bc), tag_len);
121 }
122 }
123 #endif
124
125 #if defined(BOTAN_HAS_AEAD_OCB)
126 if(req.algo_name() == "OCB") {
127 size_t tag_len = req.arg_as_integer(1, 16);
128 if(dir == Cipher_Dir::Encryption) {
129 return std::make_unique<OCB_Encryption>(std::move(bc), tag_len);
130 } else {
131 return std::make_unique<OCB_Decryption>(std::move(bc), tag_len);
132 }
133 }
134 #endif
135
136 #if defined(BOTAN_HAS_AEAD_EAX)
137 if(req.algo_name() == "EAX") {
138 size_t tag_len = req.arg_as_integer(1, bc->block_size());
139 if(dir == Cipher_Dir::Encryption) {
140 return std::make_unique<EAX_Encryption>(std::move(bc), tag_len);
141 } else {
142 return std::make_unique<EAX_Decryption>(std::move(bc), tag_len);
143 }
144 }
145 #endif
146
147 #if defined(BOTAN_HAS_AEAD_SIV)
148 if(req.algo_name() == "SIV") {
149 if(dir == Cipher_Dir::Encryption) {
150 return std::make_unique<SIV_Encryption>(std::move(bc));
151 } else {
152 return std::make_unique<SIV_Decryption>(std::move(bc));
153 }
154 }
155 #endif
156
157#endif
158
159 return std::unique_ptr<AEAD_Mode>();
160}
#define BOTAN_UNUSED
Definition assert.h:118
static std::unique_ptr< AEAD_Mode > create(std::string_view algo, Cipher_Dir direction, std::string_view provider="")
Definition aead.cpp:53
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:111
std::vector< std::string > parse_algorithm_name(std::string_view namex)
Definition parsing.cpp:57

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

Referenced by Botan::AEAD_Mode::create(), Botan::Cipher_Mode::create(), Botan::AEAD_Mode::create_or_throw(), and Botan::get_aead().

◆ 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 43 of file aead.cpp.

45 {
46 if(auto aead = AEAD_Mode::create(algo, dir, provider)) {
47 return aead;
48 }
49
50 throw Lookup_Error("AEAD", algo, provider);
51}

References Botan::AEAD_Mode::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()

StreamCipher & Botan::SIV_Mode::ctr ( )
inlineprotected

Definition at line 61 of file siv.h.

61{ return *m_ctr; }

Referenced by set_ctr_iv().

◆ default_nonce_length()

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

Definition at line 132 of file aead.h.

132{ return 12; }

◆ finish() [1/2]

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

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

Definition at line 146 of file cipher_mode.h.

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

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 159 of file cipher_mode.h.

159 {
160 Botan::secure_vector<uint8_t> tmp(final_block.begin(), final_block.end());
161 finish_msg(tmp, offset);
162 final_block.resize(tmp.size());
163 std::copy(tmp.begin(), tmp.end(), final_block.begin());
164 }
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:61

◆ finish_msg()

virtual void Botan::Cipher_Mode::finish_msg ( secure_vector< uint8_t > & final_block,
size_t offset = 0 )
protectedpure virtualinherited

◆ has_keying_material()

bool Botan::SIV_Mode::has_keying_material ( ) const
finaloverridevirtual
Returns
true if a key has been set on this object

Implements Botan::SymmetricAlgorithm.

Definition at line 69 of file siv.cpp.

69 {
70 return m_ctr->has_keying_material() && m_mac->has_keying_material();
71}

◆ ideal_granularity()

size_t Botan::SIV_Mode::ideal_granularity ( ) const
finaloverridevirtual

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.

Implements Botan::Cipher_Mode.

Definition at line 56 of file siv.cpp.

56 {
57 // Completely arbitrary value:
58 return 128;
59}

◆ key_spec()

Key_Length_Specification Botan::SIV_Mode::key_spec ( ) const
finaloverridevirtual
Returns
object describing limits on key size

Implements Botan::SymmetricAlgorithm.

Definition at line 65 of file siv.cpp.

65 {
66 return m_mac->key_spec().multiple(2);
67}

◆ maximum_associated_data_inputs()

size_t Botan::SIV_Mode::maximum_associated_data_inputs ( ) const
finaloverridevirtual

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 from Botan::AEAD_Mode.

Definition at line 80 of file siv.cpp.

80 {
81 return block_size() * 8 - 2;
82}
size_t block_size() const
Definition siv.h:59

References block_size().

Referenced by set_associated_data_n().

◆ maximum_keylength()

size_t Botan::SymmetricAlgorithm::maximum_keylength ( ) const
inlineinherited
Returns
maximum allowed key length

Definition at line 95 of file sym_algo.h.

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

◆ minimum_final_size()

virtual size_t Botan::Cipher_Mode::minimum_final_size ( ) const
pure virtualinherited

◆ minimum_keylength()

size_t Botan::SymmetricAlgorithm::minimum_keylength ( ) const
inlineinherited
Returns
minimum allowed key length

Definition at line 100 of file sym_algo.h.

100{ return key_spec().minimum_keylength(); }
size_t minimum_keylength() const
Definition sym_algo.h:49

◆ msg_buf()

secure_vector< uint8_t > & Botan::SIV_Mode::msg_buf ( )
inlineprotected

Definition at line 65 of file siv.h.

65{ return m_msg_buf; }

◆ name()

std::string Botan::SIV_Mode::name ( ) const
finaloverridevirtual
Returns
the algorithm name

Implements Botan::SymmetricAlgorithm.

Definition at line 44 of file siv.cpp.

44 {
45 return m_name;
46}

Referenced by set_associated_data_n().

◆ output_length()

virtual size_t Botan::Cipher_Mode::output_length ( size_t input_length) const
pure virtualinherited

◆ 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 123 of file cipher_mode.h.

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

◆ process() [2/2]

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

Definition at line 125 of file cipher_mode.h.

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

◆ provider()

virtual std::string Botan::Cipher_Mode::provider ( ) const
inlinevirtualinherited
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 234 of file cipher_mode.h.

234{ return "base"; }

Referenced by Botan::AEAD_Mode::create(), Botan::Cipher_Mode::create(), Botan::AEAD_Mode::create_or_throw(), and Botan::Cipher_Mode::create_or_throw().

◆ providers()

std::vector< std::string > Botan::Cipher_Mode::providers ( std::string_view algo_spec)
staticinherited
Returns
list of available providers for this algorithm, empty if not available
Parameters
algo_specalgorithm name

Definition at line 164 of file cipher_mode.cpp.

164 {
165 const std::vector<std::string>& possible = {"base", "commoncrypto"};
166 std::vector<std::string> providers;
167 for(auto&& prov : possible) {
168 auto mode = Cipher_Mode::create(algo_spec, Cipher_Dir::Encryption, prov);
169 if(mode) {
170 providers.push_back(prov); // available
171 }
172 }
173 return providers;
174}
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 Botan::Cipher_Mode::create(), Botan::Encryption, and Botan::Cipher_Mode::providers().

Referenced by Botan::Cipher_Mode::providers().

◆ requires_entire_message()

bool Botan::SIV_Mode::requires_entire_message ( ) const
finaloverridevirtual

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 61 of file siv.cpp.

61 {
62 return true;
63}

◆ reset()

void Botan::SIV_Mode::reset ( )
finaloverridevirtual

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

Implements Botan::Cipher_Mode.

Definition at line 38 of file siv.cpp.

38 {
39 m_nonce.clear();
40 m_msg_buf.clear();
41 m_ad_macs.clear();
42}

Referenced by clear().

◆ S2V()

secure_vector< uint8_t > Botan::SIV_Mode::S2V ( const uint8_t text[],
size_t text_len )
protected

Definition at line 117 of file siv.cpp.

117 {
118 const std::vector<uint8_t> zeros(block_size());
119
120 secure_vector<uint8_t> V = m_mac->process(zeros.data(), zeros.size());
121
122 for(size_t i = 0; i != m_ad_macs.size(); ++i) {
123 poly_double_n(V.data(), V.size());
124 V ^= m_ad_macs[i];
125 }
126
127 if(!m_nonce.empty()) {
128 poly_double_n(V.data(), V.size());
129 V ^= m_nonce;
130 }
131
132 if(text_len < block_size()) {
133 poly_double_n(V.data(), V.size());
134 xor_buf(V.data(), text, text_len);
135 V[text_len] ^= 0x80;
136 return m_mac->process(V);
137 }
138
139 m_mac->update(text, text_len - block_size());
140 xor_buf(V.data(), &text[text_len - block_size()], block_size());
141 m_mac->update(V);
142
143 return m_mac->final();
144}
constexpr void xor_buf(ranges::contiguous_output_range< uint8_t > auto &&out, ranges::contiguous_range< uint8_t > auto &&in)
Definition mem_ops.h:340
void poly_double_n(uint8_t out[], const uint8_t in[], size_t n)
Definition poly_dbl.cpp:74

References block_size(), Botan::poly_double_n(), and Botan::xor_buf().

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

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

◆ set_associated_data() [1/2]

void Botan::AEAD_Mode::set_associated_data ( const uint8_t ad[],
size_t ad_len )
inlineinherited

Definition at line 61 of file aead.h.

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

References Botan::AEAD_Mode::set_associated_data().

Referenced by Botan::AEAD_Mode::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

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

◆ set_associated_data_n()

void Botan::SIV_Mode::set_associated_data_n ( size_t n,
std::span< const uint8_t > ad )
finaloverridevirtual

Sets the nth element of the vector of associated data

Parameters
nindex into the AD vector
adassociated data

Implements Botan::AEAD_Mode.

Definition at line 84 of file siv.cpp.

84 {
85 const size_t max_ads = maximum_associated_data_inputs();
86 if(n > max_ads) {
87 throw Invalid_Argument(name() + " allows no more than " + std::to_string(max_ads) + " ADs");
88 }
89
90 if(n >= m_ad_macs.size()) {
91 m_ad_macs.resize(n + 1);
92 }
93
94 m_ad_macs[n] = m_mac->process(ad);
95}
std::string name() const override final
Definition siv.cpp:44
size_t maximum_associated_data_inputs() const override final
Definition siv.cpp:80

References maximum_associated_data_inputs(), and name().

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

111 {
113 }

◆ set_ctr_iv()

void Botan::SIV_Mode::set_ctr_iv ( secure_vector< uint8_t > V)
protected

Definition at line 146 of file siv.cpp.

146 {
147 V[m_bs - 8] &= 0x7F;
148 V[m_bs - 4] &= 0x7F;
149
150 ctr().set_iv(V.data(), V.size());
151}
StreamCipher & ctr()
Definition siv.h:61
void set_iv(const uint8_t iv[], size_t iv_len)

References ctr(), and Botan::StreamCipher::set_iv().

◆ set_key() [1/3]

void Botan::SymmetricAlgorithm::set_key ( const SymmetricKey & key)
inlineinherited

◆ 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 126 of file sym_algo.h.

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

References Botan::SymmetricAlgorithm::set_key().

Referenced by Botan::SymmetricAlgorithm::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 17 of file sym_algo.cpp.

17 {
18 if(!valid_keylength(key.size())) {
19 throw Invalid_Key_Length(name(), key.size());
20 }
21 key_schedule(key);
22}
bool valid_keylength(size_t length) const
Definition sym_algo.h:107
virtual std::string name() const =0

References Botan::SymmetricAlgorithm::name(), and Botan::SymmetricAlgorithm::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 108 of file cipher_mode.h.

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

◆ 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 96 of file cipher_mode.h.

96{ start_msg(nonce, nonce_len); }

◆ start() [3/3]

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

Begin processing a message with a fresh nonce.

Parameters
noncethe per message nonce

Definition at line 89 of file cipher_mode.h.

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

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

◆ tag_size()

size_t Botan::SIV_Mode::tag_size ( ) const
inlinefinaloverridevirtual
Returns
the size of the authentication tag used (in bytes)

Reimplemented from Botan::Cipher_Mode.

Definition at line 50 of file siv.h.

50{ return 16; }

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

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

Definition at line 133 of file cipher_mode.h.

133 {
134 BOTAN_ASSERT(buffer.size() >= offset, "Offset ok");
135 const size_t written = process(std::span(buffer).subspan(offset));
136 buffer.resize(offset + written);
137 }
#define BOTAN_ASSERT(expr, assertion_made)
Definition assert.h:50
size_t process(std::span< uint8_t > msg)

References BOTAN_ASSERT.

Referenced by botan_cipher_update().

◆ update_granularity()

size_t Botan::SIV_Mode::update_granularity ( ) const
finaloverridevirtual
Returns
size of required blocks to update

Implements Botan::Cipher_Mode.

Definition at line 52 of file siv.cpp.

52 {
53 return 1;
54}

◆ 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 107 of file sym_algo.h.

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

Referenced by Botan::SymmetricAlgorithm::set_key().

◆ valid_nonce_length()

bool Botan::SIV_Mode::valid_nonce_length ( size_t nonce_len) const
finaloverridevirtual
Returns
true iff nonce_len is a valid length for the nonce

Implements Botan::Cipher_Mode.

Definition at line 48 of file siv.cpp.

48 {
49 return true;
50}

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