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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/*************************************************
* PK Filters Source File *
* (C) 1999-2008 The Botan Project *
*************************************************/
#include <botan/pk_filts.h>
namespace Botan {
/*************************************************
* Append to the buffer *
*************************************************/
void PK_Encryptor_Filter::write(const byte input[], u32bit length)
{
buffer.append(input, length);
}
/*************************************************
* Encrypt the message *
*************************************************/
void PK_Encryptor_Filter::end_msg()
{
send(cipher->encrypt(buffer, buffer.size()));
buffer.destroy();
}
/*************************************************
* Append to the buffer *
*************************************************/
void PK_Decryptor_Filter::write(const byte input[], u32bit length)
{
buffer.append(input, length);
}
/*************************************************
* Decrypt the message *
*************************************************/
void PK_Decryptor_Filter::end_msg()
{
send(cipher->decrypt(buffer, buffer.size()));
buffer.destroy();
}
/*************************************************
* Add more data *
*************************************************/
void PK_Signer_Filter::write(const byte input[], u32bit length)
{
signer->update(input, length);
}
/*************************************************
* Sign the message *
*************************************************/
void PK_Signer_Filter::end_msg()
{
send(signer->signature());
}
/*************************************************
* Add more data *
*************************************************/
void PK_Verifier_Filter::write(const byte input[], u32bit length)
{
verifier->update(input, length);
}
/*************************************************
* Verify the message *
*************************************************/
void PK_Verifier_Filter::end_msg()
{
if(signature.is_empty())
throw Exception("PK_Verifier_Filter: No signature to check against");
bool is_valid = verifier->check_signature(signature, signature.size());
send((is_valid ? 1 : 0));
}
/*************************************************
* Set the signature to check *
*************************************************/
void PK_Verifier_Filter::set_signature(const byte sig[], u32bit length)
{
signature.set(sig, length);
}
/*************************************************
* Set the signature to check *
*************************************************/
void PK_Verifier_Filter::set_signature(const MemoryRegion<byte>& sig)
{
signature = sig;
}
/*************************************************
* PK_Verifier_Filter Constructor *
*************************************************/
PK_Verifier_Filter::PK_Verifier_Filter(PK_Verifier* v, const byte sig[],
u32bit length) :
verifier(v), signature(sig, length)
{
}
/*************************************************
* PK_Verifier_Filter Constructor *
*************************************************/
PK_Verifier_Filter::PK_Verifier_Filter(PK_Verifier* v,
const MemoryRegion<byte>& sig) :
verifier(v), signature(sig)
{
}
}
|