blob: b40c2d3f63fa533336269b4f5b30d0e9af6c537f (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/**
* AES using Intel's AES instructions
* (C) 1999-2009 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_AES_INTEL_H__
#define BOTAN_AES_INTEL_H__
#include <botan/block_cipher.h>
namespace Botan {
class BOTAN_DLL AES_Intel : public BlockCipher
{
public:
void encrypt_n(const byte in[], byte out[], u32bit blocks) const;
void decrypt_n(const byte in[], byte out[], u32bit blocks) const;
void clear();
std::string name() const { return "AES"; }
BlockCipher* clone() const { return new AES_Intel; }
AES_Intel() : BlockCipher(16, 16, 32, 8) { ROUNDS = 14; }
AES_Intel(u32bit);
private:
void key_schedule(const byte[], u32bit);
u32bit ROUNDS;
SecureBuffer<u32bit, 56> EK;
SecureBuffer<byte, 16> ME;
SecureBuffer<u32bit, 56> DK;
SecureBuffer<byte, 16> MD;
};
/**
* AES-128
*/
class BOTAN_DLL AES_Intel_128 : public AES_Intel
{
public:
std::string name() const { return "AES-128"; }
BlockCipher* clone() const { return new AES_Intel_128; }
AES_Intel_128() : AES_Intel(16) {}
};
/**
* AES-192
*/
class BOTAN_DLL AES_Intel_192 : public AES_Intel
{
public:
std::string name() const { return "AES-192"; }
BlockCipher* clone() const { return new AES_Intel_192; }
AES_Intel_192() : AES_Intel(24) {}
};
/**
* AES-256
*/
class BOTAN_DLL AES_Intel_256 : public AES_Intel
{
public:
std::string name() const { return "AES-256"; }
BlockCipher* clone() const { return new AES_Intel_256; }
AES_Intel_256() : AES_Intel(32) {}
};
}
#endif
|