blob: a82f49d799116156875ce4cbfec25dceac1ab527 (
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
|
/*************************************************
* EME Header File *
* (C) 1999-2006 The Botan Project *
*************************************************/
#ifndef BOTAN_EME_H__
#define BOTAN_EME_H__
#include <botan/pk_util.h>
namespace Botan {
/*************************************************
* EME1 *
*************************************************/
class EME1 : public EME
{
public:
u32bit maximum_input_size(u32bit) const;
EME1(const std::string&, const std::string&, const std::string& = "");
~EME1() { delete mgf; }
private:
SecureVector<byte> pad(const byte[], u32bit, u32bit) const;
SecureVector<byte> unpad(const byte[], u32bit, u32bit) const;
const u32bit HASH_LENGTH;
SecureVector<byte> Phash;
MGF* mgf;
};
/*************************************************
* EME_PKCS1v15 *
*************************************************/
class EME_PKCS1v15 : public EME
{
public:
u32bit maximum_input_size(u32bit) const;
private:
SecureVector<byte> pad(const byte[], u32bit, u32bit) const;
SecureVector<byte> unpad(const byte[], u32bit, u32bit) const;
};
}
#endif
|