1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/*
* Helper include for mode implementations
* (C) 2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_MODE_UTILS_H__
#define BOTAN_MODE_UTILS_H__
#include <botan/cipher_mode.h>
#include <botan/internal/algo_registry.h>
#include <botan/lookup.h>
#include <botan/block_cipher.h>
#include <botan/loadstor.h>
#include <botan/internal/rounding.h>
#include <botan/internal/bit_ops.h>
#include <algorithm>
namespace Botan {
template<typename T>
T* make_block_cipher_mode(const Transform::Spec& spec)
{
if(BlockCipher* bc = get_block_cipher(spec.arg(0)))
return new T(bc);
return nullptr;
}
template<typename T, size_t LEN1>
T* make_block_cipher_mode_len(const Transform::Spec& spec)
{
if(BlockCipher* bc = get_block_cipher(spec.arg(0)))
{
const size_t len1 = spec.arg_as_integer(1, LEN1);
return new T(bc, len1);
}
return nullptr;
}
template<typename T, size_t LEN1, size_t LEN2>
T* make_block_cipher_mode_len2(const Transform::Spec& spec)
{
if(BlockCipher* bc = get_block_cipher(spec.arg(0)))
{
const size_t len1 = spec.arg_as_integer(1, LEN1);
const size_t len2 = spec.arg_as_integer(2, LEN2);
return new T(bc, len1, len2);
}
return nullptr;
}
#define BOTAN_REGISTER_BLOCK_CIPHER_MODE(E, D) \
BOTAN_REGISTER_NAMED_T(Transform, #E, E, make_block_cipher_mode<E>); \
BOTAN_REGISTER_NAMED_T(Transform, #D, D, make_block_cipher_mode<D>)
#define BOTAN_REGISTER_BLOCK_CIPHER_MODE_LEN(E, D, LEN) \
BOTAN_REGISTER_NAMED_T(Transform, #E, E, (make_block_cipher_mode_len<E, LEN>)); \
BOTAN_REGISTER_NAMED_T(Transform, #D, D, (make_block_cipher_mode_len<D, LEN>))
#define BOTAN_REGISTER_BLOCK_CIPHER_MODE_LEN2(E, D, LEN1, LEN2) \
BOTAN_REGISTER_NAMED_T(Transform, #E, E, (make_block_cipher_mode_len2<E, LEN1, LEN2>)); \
BOTAN_REGISTER_NAMED_T(Transform, #D, D, (make_block_cipher_mode_len2<D, LEN1, LEN2>))
}
#endif
|