blob: b048862a42d0bad4702a216c6a745a21255fe4c4 (
plain)
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
|
/*
* Block Cipher Mode
* (C) 1999-2007 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/modebase.h>
namespace Botan {
/*
* Block Cipher Mode Constructor
*/
BlockCipherMode::BlockCipherMode(BlockCipher* cipher_ptr,
const std::string& cipher_mode_name,
u32bit iv_size, u32bit iv_meth,
u32bit buf_mult) :
BLOCK_SIZE(cipher_ptr->BLOCK_SIZE), BUFFER_SIZE(buf_mult * BLOCK_SIZE),
IV_METHOD(iv_meth), mode_name(cipher_mode_name)
{
cipher = cipher_ptr;
buffer.create(BUFFER_SIZE);
state.create(iv_size);
position = 0;
}
/*
* Return the name of this type
*/
std::string BlockCipherMode::name() const
{
return (cipher->name() + "/" + mode_name);
}
/*
* Set the IV
*/
void BlockCipherMode::set_iv(const InitializationVector& new_iv)
{
if(new_iv.length() != state.size())
throw Invalid_IV_Length(name(), new_iv.length());
state = new_iv.bits_of();
buffer.clear();
position = 0;
if(IV_METHOD == 1)
cipher->encrypt(state, buffer);
else if(IV_METHOD == 2)
cipher->encrypt(state);
}
}
|