Botan 3.1.1
Crypto and TLS for C&
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
Botan::TripleDES Class Referencefinal

#include <des.h>

Inheritance diagram for Botan::TripleDES:
Botan::Block_Cipher_Fixed_Params< 8, 16, 24, 8 > Botan::BlockCipher Botan::SymmetricAlgorithm

Public Types

enum  
 

Public Member Functions

size_t block_size () const final override
 
void clear () override
 
BlockCipherclone () const
 
void decrypt (const uint8_t in[], uint8_t out[]) const
 
void decrypt (std::span< const uint8_t > in, std::span< uint8_t > out) const
 
void decrypt (std::span< uint8_t > block) const
 
void decrypt (uint8_t block[]) const
 
void decrypt_n (const uint8_t in[], uint8_t out[], size_t blocks) const override
 
void decrypt_n_xex (uint8_t data[], const uint8_t mask[], size_t blocks) const final override
 
void encrypt (const uint8_t in[], uint8_t out[]) const
 
void encrypt (std::span< const uint8_t > in, std::span< uint8_t > out) const
 
void encrypt (std::span< uint8_t > block) const
 
void encrypt (uint8_t block[]) const
 
void encrypt_n (const uint8_t in[], uint8_t out[], size_t blocks) const override
 
void encrypt_n_xex (uint8_t data[], const uint8_t mask[], size_t blocks) const final override
 
bool has_keying_material () const override
 
Key_Length_Specification key_spec () const final override
 
size_t maximum_keylength () const
 
size_t minimum_keylength () const
 
std::string name () const override
 
std::unique_ptr< BlockCiphernew_object () const override
 
size_t parallel_bytes () const
 
virtual size_t parallelism () const
 
virtual std::string provider () const
 
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)
 
bool valid_keylength (size_t length) const
 

Static Public Member Functions

static std::unique_ptr< BlockCiphercreate (std::string_view algo_spec, std::string_view provider="")
 
static std::unique_ptr< BlockCiphercreate_or_throw (std::string_view algo_spec, 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
 

Detailed Description

Triple DES

Definition at line 40 of file des.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
inherited

Definition at line 196 of file block_cipher.h.

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(), 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(), 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 141 of file sym_algo.h.

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

◆ block_size()

size_t Botan::Block_Cipher_Fixed_Params< BS, KMIN, KMAX, KMOD, BlockCipher >::block_size ( ) const
inlinefinaloverridevirtualinherited
Returns
block size of this algorithm

Implements Botan::BlockCipher.

Definition at line 198 of file block_cipher.h.

198{ return BS; }

◆ clear()

void Botan::TripleDES::clear ( )
overridevirtual

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 457 of file des.cpp.

457 {
458 zap(m_round_key);
459}
void zap(std::vector< T, Alloc > &vec)
Definition: secmem.h:117

References Botan::zap().

◆ clone()

BlockCipher * Botan::BlockCipher::clone ( ) const
inlineinherited

Definition at line 170 of file block_cipher.h.

170{ return this->new_object().release(); }
virtual std::unique_ptr< BlockCipher > new_object() const =0

◆ create()

std::unique_ptr< BlockCipher > Botan::BlockCipher::create ( std::string_view  algo_spec,
std::string_view  provider = "" 
)
staticinherited

Create an instance based on a name If provider is empty then best available is chosen.

Parameters
algo_specalgorithm name
providerprovider implementation to choose
Returns
a null pointer if the algo/provider combination cannot be found

Definition at line 87 of file block_cipher.cpp.

87 {
88#if defined(BOTAN_HAS_COMMONCRYPTO)
89 if(provider.empty() || provider == "commoncrypto") {
90 if(auto bc = make_commoncrypto_block_cipher(algo))
91 return bc;
92
93 if(!provider.empty())
94 return nullptr;
95 }
96#endif
97
98 // TODO: CryptoAPI
99 // TODO: /dev/crypto
100
101 // Only base providers from here on out
102 if(provider.empty() == false && provider != "base") {
103 return nullptr;
104 }
105
106#if defined(BOTAN_HAS_AES)
107 if(algo == "AES-128") {
108 return std::make_unique<AES_128>();
109 }
110
111 if(algo == "AES-192") {
112 return std::make_unique<AES_192>();
113 }
114
115 if(algo == "AES-256") {
116 return std::make_unique<AES_256>();
117 }
118#endif
119
120#if defined(BOTAN_HAS_ARIA)
121 if(algo == "ARIA-128") {
122 return std::make_unique<ARIA_128>();
123 }
124
125 if(algo == "ARIA-192") {
126 return std::make_unique<ARIA_192>();
127 }
128
129 if(algo == "ARIA-256") {
130 return std::make_unique<ARIA_256>();
131 }
132#endif
133
134#if defined(BOTAN_HAS_SERPENT)
135 if(algo == "Serpent") {
136 return std::make_unique<Serpent>();
137 }
138#endif
139
140#if defined(BOTAN_HAS_SHACAL2)
141 if(algo == "SHACAL2") {
142 return std::make_unique<SHACAL2>();
143 }
144#endif
145
146#if defined(BOTAN_HAS_TWOFISH)
147 if(algo == "Twofish") {
148 return std::make_unique<Twofish>();
149 }
150#endif
151
152#if defined(BOTAN_HAS_THREEFISH_512)
153 if(algo == "Threefish-512") {
154 return std::make_unique<Threefish_512>();
155 }
156#endif
157
158#if defined(BOTAN_HAS_BLOWFISH)
159 if(algo == "Blowfish") {
160 return std::make_unique<Blowfish>();
161 }
162#endif
163
164#if defined(BOTAN_HAS_CAMELLIA)
165 if(algo == "Camellia-128") {
166 return std::make_unique<Camellia_128>();
167 }
168
169 if(algo == "Camellia-192") {
170 return std::make_unique<Camellia_192>();
171 }
172
173 if(algo == "Camellia-256") {
174 return std::make_unique<Camellia_256>();
175 }
176#endif
177
178#if defined(BOTAN_HAS_DES)
179 if(algo == "DES") {
180 return std::make_unique<DES>();
181 }
182
183 if(algo == "TripleDES" || algo == "3DES" || algo == "DES-EDE") {
184 return std::make_unique<TripleDES>();
185 }
186#endif
187
188#if defined(BOTAN_HAS_NOEKEON)
189 if(algo == "Noekeon") {
190 return std::make_unique<Noekeon>();
191 }
192#endif
193
194#if defined(BOTAN_HAS_CAST_128)
195 if(algo == "CAST-128" || algo == "CAST5") {
196 return std::make_unique<CAST_128>();
197 }
198#endif
199
200#if defined(BOTAN_HAS_IDEA)
201 if(algo == "IDEA") {
202 return std::make_unique<IDEA>();
203 }
204#endif
205
206#if defined(BOTAN_HAS_SEED)
207 if(algo == "SEED") {
208 return std::make_unique<SEED>();
209 }
210#endif
211
212#if defined(BOTAN_HAS_SM4)
213 if(algo == "SM4") {
214 return std::make_unique<SM4>();
215 }
216#endif
217
218 const SCAN_Name req(algo);
219
220#if defined(BOTAN_HAS_GOST_28147_89)
221 if(req.algo_name() == "GOST-28147-89") {
222 return std::make_unique<GOST_28147_89>(req.arg(0, "R3411_94_TestParam"));
223 }
224#endif
225
226#if defined(BOTAN_HAS_CASCADE)
227 if(req.algo_name() == "Cascade" && req.arg_count() == 2) {
228 auto c1 = BlockCipher::create(req.arg(0));
229 auto c2 = BlockCipher::create(req.arg(1));
230
231 if(c1 && c2) {
232 return std::make_unique<Cascade_Cipher>(std::move(c1), std::move(c2));
233 }
234 }
235#endif
236
237#if defined(BOTAN_HAS_LION)
238 if(req.algo_name() == "Lion" && req.arg_count_between(2, 3)) {
239 auto hash = HashFunction::create(req.arg(0));
240 auto stream = StreamCipher::create(req.arg(1));
241
242 if(hash && stream) {
243 const size_t block_size = req.arg_as_integer(2, 1024);
244 return std::make_unique<Lion>(std::move(hash), std::move(stream), block_size);
245 }
246 }
247#endif
248
249 BOTAN_UNUSED(req);
251
252 return nullptr;
253}
#define BOTAN_UNUSED
Definition: assert.h:118
static std::unique_ptr< BlockCipher > create(std::string_view algo_spec, std::string_view provider="")
virtual size_t block_size() const =0
virtual std::string provider() const
Definition: block_cipher.h:65
static std::unique_ptr< HashFunction > create(std::string_view algo_spec, std::string_view provider="")
Definition: hash.cpp:103
static std::unique_ptr< StreamCipher > create(std::string_view algo_spec, std::string_view provider="")
std::unique_ptr< BlockCipher > make_commoncrypto_block_cipher(std::string_view name)

References Botan::SCAN_Name::algo_name(), Botan::SCAN_Name::arg(), Botan::SCAN_Name::arg_as_integer(), Botan::SCAN_Name::arg_count(), Botan::SCAN_Name::arg_count_between(), Botan::BlockCipher::block_size(), BOTAN_UNUSED, Botan::BlockCipher::create(), Botan::HashFunction::create(), Botan::StreamCipher::create(), Botan::make_commoncrypto_block_cipher(), and Botan::BlockCipher::provider().

Referenced by botan_block_cipher_init(), Botan::AEAD_Mode::create(), Botan::Cipher_Mode::create(), Botan::BlockCipher::create(), Botan::MessageAuthenticationCode::create(), Botan::StreamCipher::create(), and Botan::BlockCipher::create_or_throw().

◆ create_or_throw()

std::unique_ptr< BlockCipher > Botan::BlockCipher::create_or_throw ( std::string_view  algo_spec,
std::string_view  provider = "" 
)
staticinherited

Create an instance based on a name, or throw if the algo/provider combination cannot be found. If provider is empty then best available is chosen.

Definition at line 256 of file block_cipher.cpp.

256 {
257 if(auto bc = BlockCipher::create(algo, provider)) {
258 return bc;
259 }
260 throw Lookup_Error("Block cipher", algo, provider);
261}

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

Referenced by botan_nist_kw_dec(), botan_nist_kw_enc(), Botan::TLS::Connection_Cipher_State::Connection_Cipher_State(), Botan::Encrypted_PSK_Database::Encrypted_PSK_Database(), Botan::rfc3394_keyunwrap(), and Botan::rfc3394_keywrap().

◆ decrypt() [1/4]

void Botan::BlockCipher::decrypt ( const uint8_t  in[],
uint8_t  out[] 
) const
inlineinherited

Decrypt a block.

Parameters
inThe ciphertext block to be decypted as a byte array. Must be of length block_size().
outThe byte array designated to hold the decrypted block. Must be of length block_size().

Definition at line 83 of file block_cipher.h.

83{ decrypt_n(in, out, 1); }
virtual void decrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const =0

Referenced by Botan::nist_key_unwrap(), and Botan::nist_key_unwrap_padded().

◆ decrypt() [2/4]

void Botan::BlockCipher::decrypt ( std::span< const uint8_t >  in,
std::span< uint8_t >  out 
) const
inlineinherited

Decrypt one or more blocks

Parameters
inthe input buffer (multiple of block_size())
outthe output buffer (same size as in)

Definition at line 131 of file block_cipher.h.

131 {
132 return decrypt_n(in.data(), out.data(), in.size() / block_size());
133 }

◆ decrypt() [3/4]

void Botan::BlockCipher::decrypt ( std::span< uint8_t >  block) const
inlineinherited

Decrypt one or more blocks

Parameters
blockthe input/output buffer (multiple of block_size())

Definition at line 113 of file block_cipher.h.

113 {
114 return decrypt_n(block.data(), block.data(), block.size() / block_size());
115 }

◆ decrypt() [4/4]

void Botan::BlockCipher::decrypt ( uint8_t  block[]) const
inlineinherited

Decrypt a block.

Parameters
blockthe ciphertext block to be decrypted Must be of length block_size(). Will hold the result when the function has finished.

Definition at line 99 of file block_cipher.h.

99{ decrypt_n(block, block, 1); }

◆ decrypt_n()

void Botan::TripleDES::decrypt_n ( const uint8_t  in[],
uint8_t  out[],
size_t  blocks 
) const
overridevirtual

Decrypt one or more blocks

Parameters
inthe input buffer (multiple of block_size())
outthe output buffer (same size as in)
blocksthe number of blocks to process

Implements Botan::BlockCipher.

Definition at line 394 of file des.cpp.

394 {
396
397 while(blocks >= 2) {
398 uint32_t L0 = load_be<uint32_t>(in, 0);
399 uint32_t R0 = load_be<uint32_t>(in, 1);
400 uint32_t L1 = load_be<uint32_t>(in, 2);
401 uint32_t R1 = load_be<uint32_t>(in, 3);
402
403 des_IP(L0, R0);
404 des_IP(L1, R1);
405
406 des_decrypt_x2(L0, R0, L1, R1, &m_round_key[64]);
407 des_encrypt_x2(R0, L0, R1, L1, &m_round_key[32]);
408 des_decrypt_x2(L0, R0, L1, R1, &m_round_key[0]);
409
410 des_FP(L0, R0);
411 des_FP(L1, R1);
412
413 store_be(out, R0, L0, R1, L1);
414
415 in += 2 * BLOCK_SIZE;
416 out += 2 * BLOCK_SIZE;
417 blocks -= 2;
418 }
419
420 while(blocks > 0) {
421 uint32_t L0 = load_be<uint32_t>(in, 0);
422 uint32_t R0 = load_be<uint32_t>(in, 1);
423
424 des_IP(L0, R0);
425 des_decrypt(L0, R0, &m_round_key[64]);
426 des_encrypt(R0, L0, &m_round_key[32]);
427 des_decrypt(L0, R0, &m_round_key[0]);
428 des_FP(L0, R0);
429
430 store_be(out, R0, L0);
431
432 in += BLOCK_SIZE;
433 out += BLOCK_SIZE;
434 blocks -= 1;
435 }
436}
constexpr uint32_t load_be< uint32_t >(const uint8_t in[], size_t off)
Definition: loadstor.h:174
constexpr void store_be(uint16_t in, uint8_t out[2])
Definition: loadstor.h:407

References Botan::SymmetricAlgorithm::assert_key_material_set(), Botan::Block_Cipher_Fixed_Params< 8, 16, 24, 8 >::BLOCK_SIZE, Botan::load_be< uint32_t >(), and Botan::store_be().

◆ decrypt_n_xex()

void Botan::Block_Cipher_Fixed_Params< BS, KMIN, KMAX, KMOD, BlockCipher >::decrypt_n_xex ( uint8_t  data[],
const uint8_t  mask[],
size_t  blocks 
) const
inlinefinaloverridevirtualinherited

Reimplemented from Botan::BlockCipher.

Definition at line 207 of file block_cipher.h.

207 {
208 xor_buf(data, mask, blocks * BS);
209 this->decrypt_n(data, data, blocks);
210 xor_buf(data, mask, blocks * BS);
211 }
void xor_buf(uint8_t out[], const uint8_t in[], size_t length)
Definition: mem_ops.h:236

◆ encrypt() [1/4]

void Botan::BlockCipher::encrypt ( const uint8_t  in[],
uint8_t  out[] 
) const
inlineinherited

Encrypt a block.

Parameters
inThe plaintext block to be encrypted as a byte array. Must be of length block_size().
outThe byte array designated to hold the encrypted block. Must be of length block_size().

Definition at line 74 of file block_cipher.h.

74{ encrypt_n(in, out, 1); }
virtual void encrypt_n(const uint8_t in[], uint8_t out[], size_t blocks) const =0

Referenced by Botan::nist_key_wrap(), Botan::nist_key_wrap_padded(), and Botan::CFB_Mode::shift_register().

◆ encrypt() [2/4]

void Botan::BlockCipher::encrypt ( std::span< const uint8_t >  in,
std::span< uint8_t >  out 
) const
inlineinherited

Encrypt one or more blocks

Parameters
inthe input buffer (multiple of block_size())
outthe output buffer (same size as in)

Definition at line 122 of file block_cipher.h.

122 {
123 return encrypt_n(in.data(), out.data(), in.size() / block_size());
124 }

◆ encrypt() [3/4]

void Botan::BlockCipher::encrypt ( std::span< uint8_t >  block) const
inlineinherited

Encrypt one or more blocks

Parameters
blockthe input/output buffer (multiple of block_size())

Definition at line 105 of file block_cipher.h.

105 {
106 return encrypt_n(block.data(), block.data(), block.size() / block_size());
107 }

◆ encrypt() [4/4]

void Botan::BlockCipher::encrypt ( uint8_t  block[]) const
inlineinherited

Encrypt a block.

Parameters
blockthe plaintext block to be encrypted Must be of length block_size(). Will hold the result when the function has finished.

Definition at line 91 of file block_cipher.h.

91{ encrypt_n(block, block, 1); }

◆ encrypt_n()

void Botan::TripleDES::encrypt_n ( const uint8_t  in[],
uint8_t  out[],
size_t  blocks 
) const
overridevirtual

Encrypt one or more blocks

Parameters
inthe input buffer (multiple of block_size())
outthe output buffer (same size as in)
blocksthe number of blocks to process

Implements Botan::BlockCipher.

Definition at line 347 of file des.cpp.

347 {
349
350 while(blocks >= 2) {
351 uint32_t L0 = load_be<uint32_t>(in, 0);
352 uint32_t R0 = load_be<uint32_t>(in, 1);
353 uint32_t L1 = load_be<uint32_t>(in, 2);
354 uint32_t R1 = load_be<uint32_t>(in, 3);
355
356 des_IP(L0, R0);
357 des_IP(L1, R1);
358
359 des_encrypt_x2(L0, R0, L1, R1, &m_round_key[0]);
360 des_decrypt_x2(R0, L0, R1, L1, &m_round_key[32]);
361 des_encrypt_x2(L0, R0, L1, R1, &m_round_key[64]);
362
363 des_FP(L0, R0);
364 des_FP(L1, R1);
365
366 store_be(out, R0, L0, R1, L1);
367
368 in += 2 * BLOCK_SIZE;
369 out += 2 * BLOCK_SIZE;
370 blocks -= 2;
371 }
372
373 while(blocks > 0) {
374 uint32_t L0 = load_be<uint32_t>(in, 0);
375 uint32_t R0 = load_be<uint32_t>(in, 1);
376
377 des_IP(L0, R0);
378 des_encrypt(L0, R0, &m_round_key[0]);
379 des_decrypt(R0, L0, &m_round_key[32]);
380 des_encrypt(L0, R0, &m_round_key[64]);
381 des_FP(L0, R0);
382
383 store_be(out, R0, L0);
384
385 in += BLOCK_SIZE;
386 out += BLOCK_SIZE;
387 blocks -= 1;
388 }
389}

References Botan::SymmetricAlgorithm::assert_key_material_set(), Botan::Block_Cipher_Fixed_Params< 8, 16, 24, 8 >::BLOCK_SIZE, Botan::load_be< uint32_t >(), and Botan::store_be().

◆ encrypt_n_xex()

void Botan::Block_Cipher_Fixed_Params< BS, KMIN, KMAX, KMOD, BlockCipher >::encrypt_n_xex ( uint8_t  data[],
const uint8_t  mask[],
size_t  blocks 
) const
inlinefinaloverridevirtualinherited

Reimplemented from Botan::BlockCipher.

Definition at line 201 of file block_cipher.h.

201 {
202 xor_buf(data, mask, blocks * BS);
203 this->encrypt_n(data, data, blocks);
204 xor_buf(data, mask, blocks * BS);
205 }

◆ has_keying_material()

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

Implements Botan::SymmetricAlgorithm.

Definition at line 438 of file des.cpp.

438 {
439 return !m_round_key.empty();
440}

◆ key_spec()

Key_Length_Specification Botan::Block_Cipher_Fixed_Params< BS, KMIN, KMAX, KMOD, BlockCipher >::key_spec ( ) const
inlinefinaloverridevirtualinherited
Returns
object describing limits on key size

Implements Botan::SymmetricAlgorithm.

Definition at line 213 of file block_cipher.h.

213{ return Key_Length_Specification(KMIN, KMAX, KMOD); }

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

◆ name()

std::string Botan::TripleDES::name ( ) const
inlineoverridevirtual
Returns
the algorithm name

Implements Botan::SymmetricAlgorithm.

Definition at line 47 of file des.h.

47{ return "TripleDES"; }

◆ new_object()

std::unique_ptr< BlockCipher > Botan::TripleDES::new_object ( ) const
inlineoverridevirtual
Returns
new object representing the same algorithm as *this

Implements Botan::BlockCipher.

Definition at line 49 of file des.h.

49{ return std::make_unique<TripleDES>(); }

◆ parallel_bytes()

size_t Botan::BlockCipher::parallel_bytes ( ) const
inlineinherited
Returns
prefererred parallelism of this cipher in bytes

Definition at line 59 of file block_cipher.h.

virtual size_t parallelism() const
Definition: block_cipher.h:54
#define BOTAN_BLOCK_CIPHER_PAR_MULT
Definition: build.h:429

References BOTAN_BLOCK_CIPHER_PAR_MULT.

Referenced by Botan::CBC_Mode::ideal_granularity().

◆ parallelism()

virtual size_t Botan::BlockCipher::parallelism ( ) const
inlinevirtualinherited
Returns
native parallelism of this cipher in blocks

Reimplemented in Botan::AES_128, Botan::AES_192, Botan::AES_256, Botan::IDEA, Botan::Noekeon, Botan::Serpent, Botan::SHACAL2, and Botan::SM4.

Definition at line 54 of file block_cipher.h.

54{ return 1; }

◆ provider()

virtual std::string Botan::BlockCipher::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::AES_128, Botan::AES_192, Botan::AES_256, Botan::IDEA, Botan::Noekeon, Botan::Serpent, Botan::SHACAL2, and Botan::SM4.

Definition at line 65 of file block_cipher.h.

65{ return "base"; }

Referenced by Botan::BlockCipher::create(), and Botan::BlockCipher::create_or_throw().

◆ providers()

std::vector< std::string > Botan::BlockCipher::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 263 of file block_cipher.cpp.

263 {
264 return probe_providers_of<BlockCipher>(algo, {"base", "commoncrypto"});
265}

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

17 {
18 if(!valid_keylength(length)) {
19 throw Invalid_Key_Length(name(), length);
20 }
21 key_schedule(key, length);
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().

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

119{ set_key(key.data(), key.size()); }

References Botan::SymmetricAlgorithm::set_key().

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

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


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