Botan 3.13.0
Crypto and TLS for C&
Botan::CAST_128 Class Referencefinal

#include <cast128.h>

Inheritance diagram for Botan::CAST_128:
Botan::Block_Cipher_Fixed_Params< 8, 11, 16 > Botan::BlockCipher Botan::SymmetricAlgorithm

Public Types

enum  

Public Member Functions

size_t block_size () const final
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
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
bool has_keying_material () const override
Key_Length_Specification key_spec () const final
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 OctetString &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)

Static Public Attributes

static constexpr size_t ParallelismMult

Protected Member Functions

void assert_key_material_set () const
void assert_key_material_set (bool predicate) const

Detailed Description

CAST-128

Definition at line 19 of file cast128.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
inherited

Definition at line 234 of file block_cipher.h.

234{ BLOCK_SIZE = BS }; /* NOLINT(*-enum-size,*-use-enum-class) */

Member Function Documentation

◆ assert_key_material_set() [1/2]

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

Throw Key_Not_Set unless a key has been set on this object

Definition at line 180 of file sym_algo.h.

Referenced by Botan::CAST_128::decrypt_n(), and Botan::CAST_128::encrypt_n().

◆ assert_key_material_set() [2/2]

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

Throw Key_Not_Set unless the predicate holds

Parameters
predicateif false, a Key_Not_Set exception is thrown

Definition at line 186 of file sym_algo.h.

186 {
187 if(!predicate) {
189 }
190 }

◆ block_size()

size_t Botan::Block_Cipher_Fixed_Params< BS, KMIN, KMAX, 1, BlockCipher >::block_size ( ) const
inlinefinalvirtualinherited

Return the block size of this cipher

Returns
the fixed block size BS

Implements Botan::BlockCipher.

Definition at line 240 of file block_cipher.h.

240{ return BS; }

◆ clear()

void Botan::CAST_128::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 371 of file cast128.cpp.

371 {
372 zap(m_MK);
373 zap(m_RK);
374}
void zap(std::vector< T, Alloc > &vec)
Definition secmem.h:261

References Botan::zap().

◆ clone()

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

Create a new uninitialized object of the same type

Returns
new object representing the same algorithm as *this

Definition at line 210 of file block_cipher.h.

210{ 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 31 of file block_cipher.cpp.

96 {
97#if defined(BOTAN_HAS_COMMONCRYPTO)
98 if(provider.empty() || provider == "commoncrypto") {
100 return bc;
101
102 if(!provider.empty())
103 return nullptr;
104 }
105#endif
106
107 // TODO: CryptoAPI
108 // TODO: /dev/crypto
109
110 // Only base providers from here on out
111 if(provider.empty() == false && provider != "base") {
112 return nullptr;
113 }
114
115#if defined(BOTAN_HAS_AES)
116 if(algo == "AES-128") {
118 }
119
120 if(algo == "AES-192") {
122 }
123
124 if(algo == "AES-256") {
126 }
127#endif
128
129#if defined(BOTAN_HAS_ARIA)
130 if(algo == "ARIA-128") {
132 }
133
134 if(algo == "ARIA-192") {
136 }
137
138 if(algo == "ARIA-256") {
140 }
141#endif
142
143#if defined(BOTAN_HAS_SERPENT)
144 if(algo == "Serpent") {
146 }
147#endif
148
149#if defined(BOTAN_HAS_SHACAL2)
150 if(algo == "SHACAL2") {
152 }
153#endif
154
155#if defined(BOTAN_HAS_TWOFISH)
156 if(algo == "Twofish") {
158 }
159#endif
160
161#if defined(BOTAN_HAS_THREEFISH_512)
162 if(algo == "Threefish-512") {
164 }
165#endif
166
167#if defined(BOTAN_HAS_BLOWFISH)
168 if(algo == "Blowfish") {
170 }
171#endif
172
173#if defined(BOTAN_HAS_CAMELLIA)
174 if(algo == "Camellia-128") {
176 }
177
178 if(algo == "Camellia-192") {
180 }
181
182 if(algo == "Camellia-256") {
184 }
185#endif
186
187#if defined(BOTAN_HAS_DES)
188 if(algo == "DES") {
189 return std::make_unique<DES>();
190 }
191
192 if(algo == "TripleDES" || algo == "3DES" || algo == "DES-EDE") {
194 }
195#endif
196
197#if defined(BOTAN_HAS_NOEKEON)
198 if(algo == "Noekeon") {
200 }
201#endif
202
203#if defined(BOTAN_HAS_CAST_128)
204 if(algo == "CAST-128" || algo == "CAST5") {
206 }
207#endif
208
209#if defined(BOTAN_HAS_IDEA)
210 if(algo == "IDEA") {
211 return std::make_unique<IDEA>();
212 }
213#endif
214
215#if defined(BOTAN_HAS_KUZNYECHIK)
216 if(algo == "Kuznyechik") {
218 }
219#endif
220
221#if defined(BOTAN_HAS_SEED)
222 if(algo == "SEED") {
223 return std::make_unique<SEED>();
224 }
225#endif
226
227#if defined(BOTAN_HAS_SM4)
228 if(algo == "SM4") {
229 return std::make_unique<SM4>();
230 }
231#endif
232
233 const SCAN_Name req(algo);
234
235#if defined(BOTAN_HAS_GOST_28147_89)
236 if(req.algo_name() == "GOST-28147-89") {
237 return std::make_unique<GOST_28147_89>(req.arg(0, "R3411_94_TestParam"));
238 }
239#endif
240
241#if defined(BOTAN_HAS_CASCADE)
242 if(req.algo_name() == "Cascade" && req.arg_count() == 2) {
243 auto c1 = BlockCipher::create(req.arg(0));
244 auto c2 = BlockCipher::create(req.arg(1));
245
246 if(c1 && c2) {
248 }
249 }
250#endif
251
252#if defined(BOTAN_HAS_LION)
253 if(req.algo_name() == "Lion" && req.arg_count_between(2, 3)) {
254 auto hash = HashFunction::create(req.arg(0));
255 auto stream = StreamCipher::create(req.arg(1));
256
257 if(hash && stream) {
258 const size_t block_size = req.arg_as_integer(2, 1024);
260 }
261 }
262#endif
263
266
267 return nullptr;
268}
#define BOTAN_UNUSED
Definition assert.h:144
static std::unique_ptr< BlockCipher > create(std::string_view algo_spec, std::string_view provider="")
static std::unique_ptr< HashFunction > create(std::string_view algo_spec, std::string_view provider="")
Definition hash.cpp:111
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)

◆ 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 38 of file block_cipher.cpp.

271 {
272 if(auto bc = BlockCipher::create(algo, provider)) {
273 return bc;
274 }
275 throw Lookup_Error("Block cipher", algo, provider);
276}

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

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

◆ 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 144 of file block_cipher.h.

144 {
145 return decrypt_n(in.data(), out.data(), in.size() / block_size());
146 }

◆ decrypt() [3/4]

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

Decrypt one or more blocks

Parameters
Block Ciphersthe input/output buffer (multiple of block_size())

Definition at line 126 of file block_cipher.h.

126 {
127 return decrypt_n(block.data(), block.data(), block.size() / block_size());
128 }

◆ decrypt() [4/4]

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

Decrypt a block.

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

Definition at line 112 of file block_cipher.h.

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

◆ decrypt_n()

void Botan::CAST_128::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 266 of file cast128.cpp.

266 {
268
269 while(blocks >= 2) {
270 uint32_t L0 = 0;
271 uint32_t R0 = 0;
272 uint32_t L1 = 0;
273 uint32_t R1 = 0;
274 load_be(in, L0, R0, L1, R1);
275
276 L0 ^= F1(R0, m_MK[15], m_RK[15]);
277 L1 ^= F1(R1, m_MK[15], m_RK[15]);
278 R0 ^= F3(L0, m_MK[14], m_RK[14]);
279 R1 ^= F3(L1, m_MK[14], m_RK[14]);
280 L0 ^= F2(R0, m_MK[13], m_RK[13]);
281 L1 ^= F2(R1, m_MK[13], m_RK[13]);
282 R0 ^= F1(L0, m_MK[12], m_RK[12]);
283 R1 ^= F1(L1, m_MK[12], m_RK[12]);
284 L0 ^= F3(R0, m_MK[11], m_RK[11]);
285 L1 ^= F3(R1, m_MK[11], m_RK[11]);
286 R0 ^= F2(L0, m_MK[10], m_RK[10]);
287 R1 ^= F2(L1, m_MK[10], m_RK[10]);
288 L0 ^= F1(R0, m_MK[9], m_RK[9]);
289 L1 ^= F1(R1, m_MK[9], m_RK[9]);
290 R0 ^= F3(L0, m_MK[8], m_RK[8]);
291 R1 ^= F3(L1, m_MK[8], m_RK[8]);
292 L0 ^= F2(R0, m_MK[7], m_RK[7]);
293 L1 ^= F2(R1, m_MK[7], m_RK[7]);
294 R0 ^= F1(L0, m_MK[6], m_RK[6]);
295 R1 ^= F1(L1, m_MK[6], m_RK[6]);
296 L0 ^= F3(R0, m_MK[5], m_RK[5]);
297 L1 ^= F3(R1, m_MK[5], m_RK[5]);
298 R0 ^= F2(L0, m_MK[4], m_RK[4]);
299 R1 ^= F2(L1, m_MK[4], m_RK[4]);
300 L0 ^= F1(R0, m_MK[3], m_RK[3]);
301 L1 ^= F1(R1, m_MK[3], m_RK[3]);
302 R0 ^= F3(L0, m_MK[2], m_RK[2]);
303 R1 ^= F3(L1, m_MK[2], m_RK[2]);
304 L0 ^= F2(R0, m_MK[1], m_RK[1]);
305 L1 ^= F2(R1, m_MK[1], m_RK[1]);
306 R0 ^= F1(L0, m_MK[0], m_RK[0]);
307 R1 ^= F1(L1, m_MK[0], m_RK[0]);
308
309 store_be(out, R0, L0, R1, L1);
310
311 blocks -= 2;
312 out += 2 * BLOCK_SIZE;
313 in += 2 * BLOCK_SIZE;
314 }
315
316 if(blocks > 0) {
317 uint32_t L = 0;
318 uint32_t R = 0;
319 load_be(in, L, R);
320
321 L ^= F1(R, m_MK[15], m_RK[15]);
322 R ^= F3(L, m_MK[14], m_RK[14]);
323 L ^= F2(R, m_MK[13], m_RK[13]);
324 R ^= F1(L, m_MK[12], m_RK[12]);
325 L ^= F3(R, m_MK[11], m_RK[11]);
326 R ^= F2(L, m_MK[10], m_RK[10]);
327 L ^= F1(R, m_MK[9], m_RK[9]);
328 R ^= F3(L, m_MK[8], m_RK[8]);
329 L ^= F2(R, m_MK[7], m_RK[7]);
330 R ^= F1(L, m_MK[6], m_RK[6]);
331 L ^= F3(R, m_MK[5], m_RK[5]);
332 R ^= F2(L, m_MK[4], m_RK[4]);
333 L ^= F1(R, m_MK[3], m_RK[3]);
334 R ^= F3(L, m_MK[2], m_RK[2]);
335 L ^= F2(R, m_MK[1], m_RK[1]);
336 R ^= F1(L, m_MK[0], m_RK[0]);
337
338 store_be(out, R, L);
339 }
340}
void F2(uint32_t A, uint32_t &B, uint32_t C, uint32_t D, uint32_t &E, uint32_t M)
Definition sha1_f.h:26
void F3(uint32_t A, uint32_t &B, uint32_t C, uint32_t D, uint32_t &E, uint32_t M)
Definition sha1_f.h:31
void F1(uint32_t A, uint32_t &B, uint32_t C, uint32_t D, uint32_t &E, uint32_t M)
Definition sha1_f.h:21
void R1(uint32_t A, uint32_t &B, uint32_t C, uint32_t &D, uint32_t E, uint32_t &F, uint32_t G, uint32_t &H, uint32_t TJ, uint32_t Wi, uint32_t Wj)
Definition sm3_fn.h:21
constexpr auto store_be(ParamTs &&... params)
Definition loadstor.h:745
constexpr auto load_be(ParamTs &&... params)
Definition loadstor.h:504

References Botan::Block_Cipher_Fixed_Params< 8, 11, 16 >::assert_key_material_set(), Botan::Block_Cipher_Fixed_Params< 8, 11, 16 >::BLOCK_SIZE, Botan::load_be(), Botan::R1(), and Botan::store_be().

◆ decrypt_n_xex()

void Botan::BlockCipher::decrypt_n_xex ( uint8_t data[],
const uint8_t mask[],
size_t blocks ) const
inlineinherited

Decrypt blocks in XEX mode: XOR with the mask, decrypt, then XOR again

Parameters
datathe input/output buffer of blocks*block_size() bytes
maskthe mask to XOR with, same size as data
blocksthe number of blocks to process

Definition at line 189 of file block_cipher.h.

189 {
190 const size_t BS = block_size();
191 for(size_t i = 0; i != blocks * BS; ++i) {
192 data[i] ^= mask[i];
193 }
195 for(size_t i = 0; i != blocks * BS; ++i) {
196 data[i] ^= mask[i];
197 }
198 }

◆ 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 87 of file block_cipher.h.

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

◆ 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 135 of file block_cipher.h.

135 {
136 return encrypt_n(in.data(), out.data(), in.size() / block_size());
137 }

◆ encrypt() [3/4]

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

Encrypt one or more blocks

Parameters
Block Ciphersthe input/output buffer (multiple of block_size())

Definition at line 118 of file block_cipher.h.

118 {
119 return encrypt_n(block.data(), block.data(), block.size() / block_size());
120 }

◆ encrypt() [4/4]

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

Encrypt a block.

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

Definition at line 104 of file block_cipher.h.

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

◆ encrypt_n()

void Botan::CAST_128::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 187 of file cast128.cpp.

187 {
189
190 while(blocks >= 2) {
191 uint32_t L0 = 0;
192 uint32_t R0 = 0;
193 uint32_t L1 = 0;
194 uint32_t R1 = 0;
195 load_be(in, L0, R0, L1, R1);
196
197 L0 ^= F1(R0, m_MK[0], m_RK[0]);
198 L1 ^= F1(R1, m_MK[0], m_RK[0]);
199 R0 ^= F2(L0, m_MK[1], m_RK[1]);
200 R1 ^= F2(L1, m_MK[1], m_RK[1]);
201 L0 ^= F3(R0, m_MK[2], m_RK[2]);
202 L1 ^= F3(R1, m_MK[2], m_RK[2]);
203 R0 ^= F1(L0, m_MK[3], m_RK[3]);
204 R1 ^= F1(L1, m_MK[3], m_RK[3]);
205 L0 ^= F2(R0, m_MK[4], m_RK[4]);
206 L1 ^= F2(R1, m_MK[4], m_RK[4]);
207 R0 ^= F3(L0, m_MK[5], m_RK[5]);
208 R1 ^= F3(L1, m_MK[5], m_RK[5]);
209 L0 ^= F1(R0, m_MK[6], m_RK[6]);
210 L1 ^= F1(R1, m_MK[6], m_RK[6]);
211 R0 ^= F2(L0, m_MK[7], m_RK[7]);
212 R1 ^= F2(L1, m_MK[7], m_RK[7]);
213 L0 ^= F3(R0, m_MK[8], m_RK[8]);
214 L1 ^= F3(R1, m_MK[8], m_RK[8]);
215 R0 ^= F1(L0, m_MK[9], m_RK[9]);
216 R1 ^= F1(L1, m_MK[9], m_RK[9]);
217 L0 ^= F2(R0, m_MK[10], m_RK[10]);
218 L1 ^= F2(R1, m_MK[10], m_RK[10]);
219 R0 ^= F3(L0, m_MK[11], m_RK[11]);
220 R1 ^= F3(L1, m_MK[11], m_RK[11]);
221 L0 ^= F1(R0, m_MK[12], m_RK[12]);
222 L1 ^= F1(R1, m_MK[12], m_RK[12]);
223 R0 ^= F2(L0, m_MK[13], m_RK[13]);
224 R1 ^= F2(L1, m_MK[13], m_RK[13]);
225 L0 ^= F3(R0, m_MK[14], m_RK[14]);
226 L1 ^= F3(R1, m_MK[14], m_RK[14]);
227 R0 ^= F1(L0, m_MK[15], m_RK[15]);
228 R1 ^= F1(L1, m_MK[15], m_RK[15]);
229
230 store_be(out, R0, L0, R1, L1);
231
232 blocks -= 2;
233 out += 2 * BLOCK_SIZE;
234 in += 2 * BLOCK_SIZE;
235 }
236
237 if(blocks > 0) {
238 uint32_t L = 0;
239 uint32_t R = 0;
240 load_be(in, L, R);
241
242 L ^= F1(R, m_MK[0], m_RK[0]);
243 R ^= F2(L, m_MK[1], m_RK[1]);
244 L ^= F3(R, m_MK[2], m_RK[2]);
245 R ^= F1(L, m_MK[3], m_RK[3]);
246 L ^= F2(R, m_MK[4], m_RK[4]);
247 R ^= F3(L, m_MK[5], m_RK[5]);
248 L ^= F1(R, m_MK[6], m_RK[6]);
249 R ^= F2(L, m_MK[7], m_RK[7]);
250 L ^= F3(R, m_MK[8], m_RK[8]);
251 R ^= F1(L, m_MK[9], m_RK[9]);
252 L ^= F2(R, m_MK[10], m_RK[10]);
253 R ^= F3(L, m_MK[11], m_RK[11]);
254 L ^= F1(R, m_MK[12], m_RK[12]);
255 R ^= F2(L, m_MK[13], m_RK[13]);
256 L ^= F3(R, m_MK[14], m_RK[14]);
257 R ^= F1(L, m_MK[15], m_RK[15]);
258
259 store_be(out, R, L);
260 }
261}

References Botan::Block_Cipher_Fixed_Params< 8, 11, 16 >::assert_key_material_set(), Botan::Block_Cipher_Fixed_Params< 8, 11, 16 >::BLOCK_SIZE, Botan::load_be(), Botan::R1(), and Botan::store_be().

◆ encrypt_n_xex()

void Botan::BlockCipher::encrypt_n_xex ( uint8_t data[],
const uint8_t mask[],
size_t blocks ) const
inlineinherited

Encrypt blocks in XEX mode: XOR with the mask, encrypt, then XOR again

Parameters
datathe input/output buffer of blocks*block_size() bytes
maskthe mask to XOR with, same size as data
blocksthe number of blocks to process

Definition at line 171 of file block_cipher.h.

171 {
172 const size_t BS = block_size();
173 for(size_t i = 0; i != blocks * BS; ++i) {
174 data[i] ^= mask[i];
175 }
177 for(size_t i = 0; i != blocks * BS; ++i) {
178 data[i] ^= mask[i];
179 }
180 }

◆ has_keying_material()

bool Botan::CAST_128::has_keying_material ( ) const
overridevirtual

Test whether a key has been set on this object

Returns
true if a key has been set on this object

Implements Botan::SymmetricAlgorithm.

Definition at line 342 of file cast128.cpp.

342 {
343 return !m_RK.empty();
344}

◆ key_spec()

Key_Length_Specification Botan::Block_Cipher_Fixed_Params< BS, KMIN, KMAX, 1, BlockCipher >::key_spec ( ) const
inlinefinalvirtualinherited

Return the key lengths supported by this cipher

Returns
the fixed key length specification

Implements Botan::SymmetricAlgorithm.

Definition at line 246 of file block_cipher.h.

◆ maximum_keylength()

size_t Botan::SymmetricAlgorithm::maximum_keylength ( ) const
inlineinherited

Return the largest acceptable key length

Returns
maximum allowed key length

Definition at line 130 of file sym_algo.h.

130{ return key_spec().maximum_keylength(); }
Key_Length_Specification key_spec() const final
size_t maximum_keylength() const
Definition sym_algo.h:58

◆ minimum_keylength()

size_t Botan::SymmetricAlgorithm::minimum_keylength ( ) const
inlineinherited

Return the smallest acceptable key length

Returns
minimum allowed key length

Definition at line 136 of file sym_algo.h.

136{ return key_spec().minimum_keylength(); }
size_t minimum_keylength() const
Definition sym_algo.h:52

◆ name()

std::string Botan::CAST_128::name ( ) const
inlineoverridevirtual

Return the name of this algorithm

Returns
the algorithm name

Implements Botan::SymmetricAlgorithm.

Definition at line 26 of file cast128.h.

26{ return "CAST-128"; }

◆ new_object()

std::unique_ptr< BlockCipher > Botan::CAST_128::new_object ( ) const
inlineoverridevirtual

Create a new uninitialized object of the same type

Returns
new object representing the same algorithm as *this

Implements Botan::BlockCipher.

Definition at line 28 of file cast128.h.

28{ return std::make_unique<CAST_128>(); }

◆ parallel_bytes()

size_t Botan::BlockCipher::parallel_bytes ( ) const
inlineinherited

Return the preferred input size for bulk processing

Returns
preferred parallelism of this cipher in bytes

Definition at line 71 of file block_cipher.h.

◆ parallelism()

virtual size_t Botan::BlockCipher::parallelism ( ) const
inlinevirtualinherited

Return how many blocks this cipher processes in parallel

Returns
native parallelism of this cipher in blocks

Definition at line 65 of file block_cipher.h.

65{ return 1; }

◆ provider()

virtual std::string Botan::BlockCipher::provider ( ) const
inlinevirtualinherited

Return the name of the provider implementing this object

Returns
provider information about this implementation. Default is "base", might also return "sse2", "avx2", "openssl", or some other arbitrary string.

Definition at line 78 of file block_cipher.h.

78{ return "base"; }

◆ providers()

std::vector< std::string > Botan::BlockCipher::providers ( std::string_view algo_spec)
staticinherited

List the providers available for a given block cipher

Returns
list of available providers for this algorithm, empty if not available
Parameters
algo_specalgorithm name

Definition at line 45 of file block_cipher.cpp.

278 {
279 return probe_providers_of<BlockCipher>(algo, {"base", "commoncrypto"});
280}
std::vector< std::string > probe_providers_of(std::string_view algo_spec, const std::vector< std::string > &possible={"base"})
Definition scan_name.h:99

◆ set_key() [1/3]

void Botan::SymmetricAlgorithm::set_key ( const OctetString & key)
inherited

Set the symmetric key of this object.

Parameters
keythe SymmetricKey to be set.

Definition at line 149 of file sym_algo.cpp.

14 {
15 set_key(std::span{key.begin(), key.length()});
16}
void set_key(const OctetString &key)
Definition sym_algo.cpp:14

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

◆ 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 155 of file sym_algo.cpp.

22 {
23 if(!valid_keylength(key.size())) {
24 throw Invalid_Key_Length(name(), key.size());
25 }
27}
bool valid_keylength(size_t length) const
Definition sym_algo.h:143
virtual std::string name() const=0

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

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

Member Data Documentation

◆ ParallelismMult

size_t Botan::BlockCipher::ParallelismMult
staticconstexprinherited

Multiplier on a block cipher's native parallelism

Usually notable performance gains come from further loop blocking, at least for 2 or 4x

Definition at line 53 of file block_cipher.h.


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