#include <pk_ops_impl.h>
Definition at line 20 of file pk_ops_impl.h.
◆ ~Encryption_with_EME()
Botan::PK_Ops::Encryption_with_EME::~Encryption_with_EME |
( |
| ) |
|
|
default |
◆ Encryption_with_EME()
Botan::PK_Ops::Encryption_with_EME::Encryption_with_EME |
( |
const std::string & |
eme | ) |
|
|
explicitprotected |
Definition at line 14 of file pk_ops.cpp.
15 {
17 if(!m_eme.get())
18 throw Algorithm_Not_Found(eme);
19 }
EME * get_eme(const std::string &algo_spec)
References Botan::get_eme().
◆ ciphertext_length()
virtual size_t Botan::PK_Ops::Encryption::ciphertext_length |
( |
size_t |
ptext_len | ) |
const |
|
pure virtualinherited |
◆ encrypt()
Implements Botan::PK_Ops::Encryption.
Definition at line 26 of file pk_ops.cpp.
28 {
29 const size_t max_raw = max_raw_input_bits();
30 const std::vector<uint8_t> encoded =
unlock(m_eme->encode(msg, msg_len, max_raw, rng));
31 return raw_encrypt(encoded.data(), encoded.size(), rng);
32 }
std::vector< T > unlock(const secure_vector< T > &in)
References Botan::unlock().
◆ max_input_bits()
size_t Botan::PK_Ops::Encryption_with_EME::max_input_bits |
( |
| ) |
const |
|
overridevirtual |
The documentation for this class was generated from the following files: