#include <pk_ops_impl.h>
Definition at line 144 of file pk_ops_impl.h.
◆ ~KEM_Decryption_with_KDF()
Botan::PK_Ops::KEM_Decryption_with_KDF::~KEM_Decryption_with_KDF |
( |
| ) |
|
|
overridedefault |
◆ KEM_Decryption_with_KDF()
Botan::PK_Ops::KEM_Decryption_with_KDF::KEM_Decryption_with_KDF |
( |
std::string_view | kdf | ) |
|
|
explicitprotected |
Definition at line 238 of file pk_ops.cpp.
238 {
239 if(kdf != "Raw") {
241 }
242}
static std::unique_ptr< KDF > create_or_throw(std::string_view algo_spec, std::string_view provider="")
References Botan::KDF::create_or_throw().
◆ encapsulated_key_length()
virtual size_t Botan::PK_Ops::KEM_Decryption::encapsulated_key_length |
( |
| ) |
const |
|
pure virtualinherited |
◆ kem_decrypt()
void Botan::PK_Ops::KEM_Decryption_with_KDF::kem_decrypt |
( |
std::span< uint8_t > | out_shared_key, |
|
|
std::span< const uint8_t > | encapsulated_key, |
|
|
size_t | desired_shared_key_len, |
|
|
std::span< const uint8_t > | salt ) |
|
finalvirtual |
Implements Botan::PK_Ops::KEM_Decryption.
Definition at line 219 of file pk_ops.cpp.
222 {
223 BOTAN_ARG_CHECK(salt.empty() || m_kdf,
"PK_KEM_Decryptor::decrypt requires a KDF to use a salt");
224
225 if(m_kdf) {
227 out_shared_key.size(), desired_shared_key_len, "KDF output length and shared key length match");
228
231 m_kdf->derive_key(out_shared_key, raw_shared, salt, {});
232 } else {
235 }
236}
#define BOTAN_ASSERT_EQUAL(expr1, expr2, assertion_made)
#define BOTAN_ARG_CHECK(expr, msg)
virtual void raw_kem_decrypt(std::span< uint8_t > out_raw_shared_key, std::span< const uint8_t > encapsulated_key)=0
virtual size_t raw_kem_shared_key_length() const =0
std::vector< T, secure_allocator< T > > secure_vector
References BOTAN_ARG_CHECK, and BOTAN_ASSERT_EQUAL.
◆ raw_kem_decrypt()
virtual void Botan::PK_Ops::KEM_Decryption_with_KDF::raw_kem_decrypt |
( |
std::span< uint8_t > | out_raw_shared_key, |
|
|
std::span< const uint8_t > | encapsulated_key ) |
|
protectedpure virtual |
◆ raw_kem_shared_key_length()
virtual size_t Botan::PK_Ops::KEM_Decryption_with_KDF::raw_kem_shared_key_length |
( |
| ) |
const |
|
protectedpure virtual |
◆ shared_key_length()
size_t Botan::PK_Ops::KEM_Decryption_with_KDF::shared_key_length |
( |
size_t | desired_shared_key_len | ) |
const |
|
finalvirtual |
The documentation for this class was generated from the following files: