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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
/*
* CMAC
* (C) 1999-2007,2014 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/cmac.h>
namespace Botan {
CMAC* CMAC::make(const Spec& spec)
{
if(spec.arg_count() == 1)
{
if(auto bc = BlockCipher::create(spec.arg(0)))
return new CMAC(bc.release());
}
return nullptr;
}
/*
* Perform CMAC's multiplication in GF(2^n)
*/
secure_vector<byte> CMAC::poly_double(const secure_vector<byte>& in)
{
const bool top_carry = static_cast<bool>((in[0] & 0x80) != 0);
secure_vector<byte> out = in;
byte carry = 0;
for(size_t i = out.size(); i != 0; --i)
{
byte temp = out[i-1];
out[i-1] = (temp << 1) | carry;
carry = (temp >> 7);
}
if(top_carry)
{
switch(in.size())
{
case 8:
out[out.size()-1] ^= 0x1B;
break;
case 16:
out[out.size()-1] ^= 0x87;
break;
case 32:
out[out.size()-2] ^= 0x4;
out[out.size()-1] ^= 0x25;
break;
case 64:
out[out.size()-2] ^= 0x1;
out[out.size()-1] ^= 0x25;
break;
default:
throw std::runtime_error("Unsupported CMAC size " + std::to_string(in.size()));
}
}
return out;
}
/*
* Update an CMAC Calculation
*/
void CMAC::add_data(const byte input[], size_t length)
{
buffer_insert(m_buffer, m_position, input, length);
if(m_position + length > output_length())
{
xor_buf(m_state, m_buffer, output_length());
m_cipher->encrypt(m_state);
input += (output_length() - m_position);
length -= (output_length() - m_position);
while(length > output_length())
{
xor_buf(m_state, input, output_length());
m_cipher->encrypt(m_state);
input += output_length();
length -= output_length();
}
copy_mem(m_buffer.data(), input, length);
m_position = 0;
}
m_position += length;
}
/*
* Finalize an CMAC Calculation
*/
void CMAC::final_result(byte mac[])
{
xor_buf(m_state, m_buffer, m_position);
if(m_position == output_length())
{
xor_buf(m_state, m_B, output_length());
}
else
{
m_state[m_position] ^= 0x80;
xor_buf(m_state, m_P, output_length());
}
m_cipher->encrypt(m_state);
for(size_t i = 0; i != output_length(); ++i)
mac[i] = m_state[i];
zeroise(m_state);
zeroise(m_buffer);
m_position = 0;
}
/*
* CMAC Key Schedule
*/
void CMAC::key_schedule(const byte key[], size_t length)
{
clear();
m_cipher->set_key(key, length);
m_cipher->encrypt(m_B);
m_B = poly_double(m_B);
m_P = poly_double(m_B);
}
/*
* Clear memory of sensitive data
*/
void CMAC::clear()
{
m_cipher->clear();
zeroise(m_state);
zeroise(m_buffer);
zeroise(m_B);
zeroise(m_P);
m_position = 0;
}
/*
* Return the name of this type
*/
std::string CMAC::name() const
{
return "CMAC(" + m_cipher->name() + ")";
}
/*
* Return a clone of this object
*/
MessageAuthenticationCode* CMAC::clone() const
{
return new CMAC(m_cipher->clone());
}
/*
* CMAC Constructor
*/
CMAC::CMAC(BlockCipher* cipher) : m_cipher(cipher)
{
if(m_cipher->block_size() != 8 && m_cipher->block_size() != 16 &&
m_cipher->block_size() != 32 && m_cipher->block_size() != 64)
{
throw Invalid_Argument("CMAC cannot use the " +
std::to_string(m_cipher->block_size() * 8) +
" bit cipher " + m_cipher->name());
}
m_state.resize(output_length());
m_buffer.resize(output_length());
m_B.resize(output_length());
m_P.resize(output_length());
m_position = 0;
}
}
|