blob: 2e285e81ed93984f9d170eeb94bd9569a20b4608 (
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
75
76
77
78
79
80
81
|
/*************************************************
* PK Filters Header File *
* (C) 1999-2007 The Botan Project *
*************************************************/
#ifndef BOTAN_PK_FILTERS_H__
#define BOTAN_PK_FILTERS_H__
#include <botan/filter.h>
#include <botan/pubkey.h>
namespace Botan {
/*************************************************
* PK_Encryptor Filter *
*************************************************/
class PK_Encryptor_Filter : public Filter
{
public:
void write(const byte[], u32bit);
void end_msg();
PK_Encryptor_Filter(PK_Encryptor* c) : cipher(c) {}
~PK_Encryptor_Filter() { delete cipher; }
private:
PK_Encryptor* cipher;
SecureVector<byte> buffer;
};
/*************************************************
* PK_Decryptor Filter *
*************************************************/
class PK_Decryptor_Filter : public Filter
{
public:
void write(const byte[], u32bit);
void end_msg();
PK_Decryptor_Filter(PK_Decryptor* c) : cipher(c) {}
~PK_Decryptor_Filter() { delete cipher; }
private:
PK_Decryptor* cipher;
SecureVector<byte> buffer;
};
/*************************************************
* PK_Signer Filter *
*************************************************/
class PK_Signer_Filter : public Filter
{
public:
void write(const byte[], u32bit);
void end_msg();
PK_Signer_Filter(PK_Signer* s) : signer(s) {}
~PK_Signer_Filter() { delete signer; }
private:
PK_Signer* signer;
};
/*************************************************
* PK_Verifier Filter *
*************************************************/
class PK_Verifier_Filter : public Filter
{
public:
void write(const byte[], u32bit);
void end_msg();
void set_signature(const byte[], u32bit);
void set_signature(const MemoryRegion<byte>&);
PK_Verifier_Filter(PK_Verifier* v) : verifier(v) {}
PK_Verifier_Filter(PK_Verifier*, const byte[], u32bit);
PK_Verifier_Filter(PK_Verifier*, const MemoryRegion<byte>&);
~PK_Verifier_Filter() { delete verifier; }
private:
PK_Verifier* verifier;
SecureVector<byte> signature;
};
}
#endif
|