blob: beec40532de281d1d66f84ae9578f329feaff1c4 (
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
|
/*
* PKCS1 EME
* (C) 1999-2007 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/eme_pkcs.h>
namespace Botan {
/*
* PKCS1 Pad Operation
*/
secure_vector<byte> EME_PKCS1v15::pad(const byte in[], size_t inlen,
size_t olen,
RandomNumberGenerator& rng) const
{
olen /= 8;
if(olen < 10)
throw Encoding_Error("PKCS1: Output space too small");
if(inlen > olen - 10)
throw Encoding_Error("PKCS1: Input is too large");
secure_vector<byte> out(olen);
out[0] = 0x02;
for(size_t j = 1; j != olen - inlen - 1; ++j)
while(out[j] == 0)
out[j] = rng.next_byte();
buffer_insert(out, olen - inlen, in, inlen);
return out;
}
/*
* PKCS1 Unpad Operation
*/
secure_vector<byte> EME_PKCS1v15::unpad(const byte in[], size_t inlen,
size_t key_len) const
{
if(inlen != key_len / 8 || inlen < 10 || in[0] != 0x02)
throw Decoding_Error("PKCS1::unpad");
size_t seperator = 0;
for(size_t j = 0; j != inlen; ++j)
if(in[j] == 0)
{
seperator = j;
break;
}
if(seperator < 9)
throw Decoding_Error("PKCS1::unpad");
return secure_vector<byte>(&in[seperator + 1], &in[inlen]);
}
/*
* Return the max input size for a given key size
*/
size_t EME_PKCS1v15::maximum_input_size(size_t keybits) const
{
if(keybits / 8 > 10)
return ((keybits / 8) - 10);
else
return 0;
}
}
|