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
|
/*************************************************
* CTS Mode Header File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_CTS_H__
#define BOTAN_CTS_H__
#include <botan/modebase.h>
#include <botan/block_cipher.h>
namespace Botan {
/*************************************************
* CTS Encryption *
*************************************************/
class BOTAN_DLL CTS_Encryption : public BlockCipherMode
{
public:
CTS_Encryption(BlockCipher* ciph) :
BlockCipherMode(ciph, "CTS", ciph->BLOCK_SIZE, 0, 2) {}
CTS_Encryption(BlockCipher* ciph,
const SymmetricKey& key,
const InitializationVector& iv) :
BlockCipherMode(ciph, "CTS", ciph->BLOCK_SIZE, 0, 2)
{ set_key(key); set_iv(iv); }
private:
void write(const byte[], u32bit);
void end_msg();
void encrypt(const byte[]);
};
/*************************************************
* CTS Decryption *
*************************************************/
class BOTAN_DLL CTS_Decryption : public BlockCipherMode
{
public:
CTS_Decryption(BlockCipher* ciph) :
BlockCipherMode(ciph, "CTS", ciph->BLOCK_SIZE, 0, 2)
{ temp.create(BLOCK_SIZE); }
CTS_Decryption(BlockCipher* ciph,
const SymmetricKey& key,
const InitializationVector& iv) :
BlockCipherMode(ciph, "CTS", ciph->BLOCK_SIZE, 0, 2)
{ set_key(key); set_iv(iv); temp.create(BLOCK_SIZE); }
private:
void write(const byte[], u32bit);
void end_msg();
void decrypt(const byte[]);
SecureVector<byte> temp;
};
}
#endif
|