Botan 3.0.0-rc1
Crypto and TLS for C&
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
Botan::ChaCha20Poly1305_Decryption Class Referencefinal

#include <chacha20poly1305.h>

Inheritance diagram for Botan::ChaCha20Poly1305_Decryption:
Botan::ChaCha20Poly1305_Mode Botan::AEAD_Mode Botan::Cipher_Mode Botan::SymmetricAlgorithm

Public Member Functions

bool associated_data_requires_key () const override
 
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)
 
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
 
Key_Length_Specification key_spec () const override
 
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 override
 
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)
 
virtual std::string provider () const
 
virtual bool requires_entire_message () const
 
void reset () override
 
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) 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
 
template<concepts::resizable_byte_buffer T>
void update (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
 

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
 
bool cfrg_version () const
 
void update_len (size_t len)
 

Protected Attributes

secure_vector< uint8_t > m_ad
 
std::unique_ptr< StreamCipherm_chacha
 
size_t m_ctext_len = 0
 
size_t m_nonce_len = 0
 
std::unique_ptr< MessageAuthenticationCodem_poly1305
 

Detailed Description

ChaCha20Poly1305 Decryption

Definition at line 88 of file chacha20poly1305.h.

Member Function Documentation

◆ assert_key_material_set() [1/2]

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

Definition at line 182 of file sym_algo.h.

183 {
185 }
virtual bool has_keying_material() const =0
void assert_key_material_set() const
Definition: sym_algo.h:182

Referenced by 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::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::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 187 of file sym_algo.h.

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

◆ associated_data_requires_key()

bool Botan::ChaCha20Poly1305_Mode::associated_data_requires_key ( ) const
inlineoverridevirtualinherited

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

Definition at line 30 of file chacha20poly1305.h.

30{ return false; }

◆ authenticated()

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

Definition at line 239 of file cipher_mode.h.

239{ return this->tag_size() > 0; }
virtual size_t tag_size() const
Definition: cipher_mode.h:244

◆ cfrg_version()

bool Botan::ChaCha20Poly1305_Mode::cfrg_version ( ) const
inlineprotectedinherited

Definition at line 61 of file chacha20poly1305.h.

61{ return m_nonce_len == 12 || m_nonce_len == 24; }

References Botan::ChaCha20Poly1305_Mode::m_nonce_len.

◆ clear()

void Botan::ChaCha20Poly1305_Mode::clear ( )
overridevirtualinherited

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 37 of file chacha20poly1305.cpp.

38 {
39 m_chacha->clear();
40 m_poly1305->clear();
41 reset();
42 }
std::unique_ptr< StreamCipher > m_chacha
std::unique_ptr< MessageAuthenticationCode > m_poly1305

References Botan::ChaCha20Poly1305_Mode::m_chacha, Botan::ChaCha20Poly1305_Mode::m_poly1305, and Botan::ChaCha20Poly1305_Mode::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 52 of file aead.cpp.

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

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

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

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

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

137{ 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 158 of file cipher_mode.h.

159 {
160 finish_msg(final_block, offset);
161 }
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 174 of file cipher_mode.h.

175 {
176 Botan::secure_vector<uint8_t> tmp(final_block.begin(), final_block.end());
177 finish_msg(tmp, offset);
178 final_block.resize(tmp.size());
179 std::copy(tmp.begin(), tmp.end(), final_block.begin());
180 }
std::vector< T, secure_allocator< T > > secure_vector
Definition: secmem.h:64

◆ has_keying_material()

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

Implements Botan::SymmetricAlgorithm.

Definition at line 51 of file chacha20poly1305.cpp.

52 {
53 return m_chacha->has_keying_material();
54 }

References Botan::ChaCha20Poly1305_Mode::m_chacha.

◆ ideal_granularity()

size_t Botan::ChaCha20Poly1305_Mode::ideal_granularity ( ) const
overridevirtualinherited

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

33 {
34 return 128;
35 }

◆ key_spec()

Key_Length_Specification Botan::ChaCha20Poly1305_Mode::key_spec ( ) const
inlineoverridevirtualinherited
Returns
object describing limits on key size

Implements Botan::SymmetricAlgorithm.

Definition at line 38 of file chacha20poly1305.h.

39 { return Key_Length_Specification(32); }

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

93{ return 1; }

◆ maximum_keylength()

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

Definition at line 123 of file sym_algo.h.

124 {
125 return key_spec().maximum_keylength();
126 }
size_t maximum_keylength() const
Definition: sym_algo.h:72
virtual Key_Length_Specification key_spec() const =0

◆ minimum_final_size()

size_t Botan::ChaCha20Poly1305_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 97 of file chacha20poly1305.h.

97{ return tag_size(); }
size_t tag_size() const override

References Botan::ChaCha20Poly1305_Mode::tag_size().

◆ minimum_keylength()

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

Definition at line 131 of file sym_algo.h.

132 {
133 return key_spec().minimum_keylength();
134 }
size_t minimum_keylength() const
Definition: sym_algo.h:64

◆ name()

std::string Botan::ChaCha20Poly1305_Mode::name ( ) const
inlineoverridevirtualinherited
Returns
the algorithm name

Implements Botan::SymmetricAlgorithm.

Definition at line 32 of file chacha20poly1305.h.

32{ return "ChaCha20Poly1305"; }

◆ output_length()

size_t Botan::ChaCha20Poly1305_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. 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 91 of file chacha20poly1305.h.

92 {
93 BOTAN_ARG_CHECK(input_length >= tag_size(), "Sufficient input");
94 return input_length - tag_size();
95 }
#define BOTAN_ARG_CHECK(expr, msg)
Definition: assert.h:36

References BOTAN_ARG_CHECK, and Botan::ChaCha20Poly1305_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 133 of file cipher_mode.h.

134 { 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 135 of file cipher_mode.h.

136 { 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 250 of file cipher_mode.h.

250{ 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 172 of file cipher_mode.cpp.

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

virtual bool Botan::Cipher_Mode::requires_entire_message ( ) const
inlinevirtualinherited

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 in Botan::CCM_Mode, and Botan::SIV_Mode.

Definition at line 212 of file cipher_mode.h.

212{ return false; }

◆ reset()

void Botan::ChaCha20Poly1305_Mode::reset ( )
overridevirtualinherited

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

Implements Botan::Cipher_Mode.

Definition at line 44 of file chacha20poly1305.cpp.

45 {
46 m_ad.clear();
47 m_ctext_len = 0;
48 m_nonce_len = 0;
49 }
secure_vector< uint8_t > m_ad

References Botan::ChaCha20Poly1305_Mode::m_ad, Botan::ChaCha20Poly1305_Mode::m_ctext_len, and Botan::ChaCha20Poly1305_Mode::m_nonce_len.

Referenced by Botan::ChaCha20Poly1305_Mode::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 128 of file aead.h.

129 {
131 }
void set_associated_data(std::span< const uint8_t > ad)
Definition: aead.h:60

◆ set_associated_data() [1/2]

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

Definition at line 62 of file aead.h.

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

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

61 { 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::ChaCha20Poly1305_Mode::set_associated_data_n ( size_t  idx,
std::span< const uint8_t >  ad 
)
finaloverridevirtualinherited

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

62 {
63 BOTAN_ARG_CHECK(idx == 0, "ChaCha20Poly1305: cannot handle non-zero index in set_associated_data_n");
64 if(m_ctext_len > 0 || m_nonce_len > 0)
65 throw Invalid_State("Cannot set AD for ChaCha20Poly1305 while processing a message");
66 m_ad.assign(ad.begin(), ad.end());
67 }

References BOTAN_ARG_CHECK, Botan::ChaCha20Poly1305_Mode::m_ad, Botan::ChaCha20Poly1305_Mode::m_ctext_len, and Botan::ChaCha20Poly1305_Mode::m_nonce_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 113 of file aead.h.

114 {
116 }

◆ 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 
)
inherited

Set the symmetric key of this object.

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

Definition at line 17 of file sym_algo.cpp.

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

References Botan::SymmetricAlgorithm::name(), and Botan::SymmetricAlgorithm::valid_keylength().

◆ set_key() [3/3]

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

Set the symmetric key of this object.

Parameters
keythe contiguous byte range to be set.

Definition at line 159 of file sym_algo.h.

160 {
161 set_key(key.data(), key.size());
162 }

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

116 {
117 return start_msg(nullptr, 0);
118 }
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 100 of file cipher_mode.h.

101 {
102 start_msg(nonce, nonce_len);
103 }

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

91 {
92 start_msg(nonce.data(), nonce.size());
93 }

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

◆ tag_size()

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

Reimplemented from Botan::Cipher_Mode.

Definition at line 43 of file chacha20poly1305.h.

43{ return 16; }

Referenced by minimum_final_size(), Botan::ChaCha20Poly1305_Encryption::output_length(), and 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.

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

Definition at line 144 of file cipher_mode.h.

145 {
146 BOTAN_ASSERT(buffer.size() >= offset, "Offset ok");
147 const size_t written = process(std::span(buffer).subspan(offset));
148 buffer.resize(offset + written);
149 }
#define BOTAN_ASSERT(expr, assertion_made)
Definition: assert.h:54
size_t process(std::span< uint8_t > msg)
Definition: cipher_mode.h:133

References BOTAN_ASSERT.

Referenced by botan_cipher_update().

◆ update_granularity()

size_t Botan::ChaCha20Poly1305_Mode::update_granularity ( ) const
overridevirtualinherited
Returns
size of required blocks to update

Implements Botan::Cipher_Mode.

Definition at line 27 of file chacha20poly1305.cpp.

28 {
29 return 1;
30 }

◆ update_len()

void Botan::ChaCha20Poly1305_Mode::update_len ( size_t  len)
protectedinherited

Definition at line 69 of file chacha20poly1305.cpp.

70 {
71 uint8_t len8[8] = { 0 };
72 store_le(static_cast<uint64_t>(len), len8);
73 m_poly1305->update(len8, 8);
74 }
constexpr void store_le(uint16_t in, uint8_t out[2])
Definition: loadstor.h:465

References Botan::ChaCha20Poly1305_Mode::m_poly1305, and Botan::store_le().

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

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

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

◆ valid_nonce_length()

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

Implements Botan::Cipher_Mode.

Definition at line 22 of file chacha20poly1305.cpp.

23 {
24 return (n == 8 || n == 12 || n == 24);
25 }

Member Data Documentation

◆ m_ad

secure_vector<uint8_t> Botan::ChaCha20Poly1305_Mode::m_ad
protectedinherited

◆ m_chacha

std::unique_ptr<StreamCipher> Botan::ChaCha20Poly1305_Mode::m_chacha
protectedinherited

◆ m_ctext_len

size_t Botan::ChaCha20Poly1305_Mode::m_ctext_len = 0
protectedinherited

◆ m_nonce_len

size_t Botan::ChaCha20Poly1305_Mode::m_nonce_len = 0
protectedinherited

◆ m_poly1305

std::unique_ptr<MessageAuthenticationCode> Botan::ChaCha20Poly1305_Mode::m_poly1305
protectedinherited

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