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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
/*
* Interface for AEAD modes
* (C) 2013 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/aead.h>
#include <botan/block_cipher.h>
#include <botan/libstate.h>
#if defined(BOTAN_HAS_AEAD_CCM)
#include <botan/ccm.h>
#endif
#if defined(BOTAN_HAS_AEAD_EAX)
#include <botan/eax.h>
#endif
#if defined(BOTAN_HAS_AEAD_GCM)
#include <botan/gcm.h>
#endif
#if defined(BOTAN_HAS_AEAD_SIV)
#include <botan/siv.h>
#endif
#if defined(BOTAN_HAS_AEAD_OCB)
#include <botan/ocb.h>
#endif
#if defined(BOTAN_HAS_AEAD_CHACHA20_POLY1305)
#include <botan/chacha20poly1305.h>
#endif
namespace Botan {
AEAD_Mode* get_aead(const std::string& algo_spec, Cipher_Dir direction)
{
#if defined(BOTAN_HAS_AEAD_CHACHA20_POLY1305)
if(algo_spec == "ChaCha20Poly1305")
{
if(direction == ENCRYPTION)
return new ChaCha20Poly1305_Encryption;
else
return new ChaCha20Poly1305_Decryption;
}
#endif
Algorithm_Factory& af = global_state().algorithm_factory();
const std::vector<std::string> algo_parts = split_on(algo_spec, '/');
if(algo_parts.empty())
throw Invalid_Algorithm_Name(algo_spec);
if(algo_parts.size() < 2)
return nullptr;
const std::string cipher_name = algo_parts[0];
const BlockCipher* cipher = af.prototype_block_cipher(cipher_name);
if(!cipher)
return nullptr;
const std::vector<std::string> mode_info = parse_algorithm_name(algo_parts[1]);
if(mode_info.empty())
return nullptr;
const std::string mode_name = mode_info[0];
const size_t tag_size = (mode_info.size() > 1) ? to_u32bit(mode_info[1]) : cipher->block_size();
#if defined(BOTAN_HAS_AEAD_CCM)
if(mode_name == "CCM-8")
{
if(direction == ENCRYPTION)
return new CCM_Encryption(cipher->clone(), 8, 3);
else
return new CCM_Decryption(cipher->clone(), 8, 3);
}
if(mode_name == "CCM" || mode_name == "CCM-8")
{
const size_t L = (mode_info.size() > 2) ? to_u32bit(mode_info[2]) : 3;
if(direction == ENCRYPTION)
return new CCM_Encryption(cipher->clone(), tag_size, L);
else
return new CCM_Decryption(cipher->clone(), tag_size, L);
}
#endif
#if defined(BOTAN_HAS_AEAD_EAX)
if(mode_name == "EAX")
{
if(direction == ENCRYPTION)
return new EAX_Encryption(cipher->clone(), tag_size);
else
return new EAX_Decryption(cipher->clone(), tag_size);
}
#endif
#if defined(BOTAN_HAS_AEAD_SIV)
if(mode_name == "SIV")
{
BOTAN_ASSERT(tag_size == 16, "Valid tag size for SIV");
if(direction == ENCRYPTION)
return new SIV_Encryption(cipher->clone());
else
return new SIV_Decryption(cipher->clone());
}
#endif
#if defined(BOTAN_HAS_AEAD_GCM)
if(mode_name == "GCM")
{
if(direction == ENCRYPTION)
return new GCM_Encryption(cipher->clone(), tag_size);
else
return new GCM_Decryption(cipher->clone(), tag_size);
}
#endif
#if defined(BOTAN_HAS_AEAD_OCB)
if(mode_name == "OCB")
{
if(direction == ENCRYPTION)
return new OCB_Encryption(cipher->clone(), tag_size);
else
return new OCB_Decryption(cipher->clone(), tag_size);
}
#endif
return nullptr;
}
}
|