blob: 946cd92c791bb010c18a412569519490517da396 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/*
* CBC Padding Methods
* (C) 1999-2007,2013 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/mode_pad.h>
#include <botan/exceptn.h>
namespace Botan {
/*
* Pad with PKCS #7 Method
*/
void PKCS7_Padding::add_padding(secure_vector<byte>& buffer,
size_t last_byte_pos,
size_t block_size) const
{
const byte pad_value = block_size - last_byte_pos;
for(size_t i = 0; i != pad_value; ++i)
buffer.push_back(pad_value);
}
/*
* Unpad with PKCS #7 Method
*/
size_t PKCS7_Padding::unpad(const byte block[], size_t size) const
{
size_t position = block[size-1];
if(position > size)
throw Decoding_Error("Bad padding in " + name());
for(size_t j = size-position; j != size-1; ++j)
if(block[j] != position)
throw Decoding_Error("Bad padding in " + name());
return (size-position);
}
/*
* Pad with ANSI X9.23 Method
*/
void ANSI_X923_Padding::add_padding(secure_vector<byte>& buffer,
size_t last_byte_pos,
size_t block_size) const
{
const byte pad_value = block_size - last_byte_pos;
for(size_t i = last_byte_pos; i < block_size; ++i)
buffer.push_back(0);
buffer.push_back(pad_value);
}
/*
* Unpad with ANSI X9.23 Method
*/
size_t ANSI_X923_Padding::unpad(const byte block[], size_t size) const
{
size_t position = block[size-1];
if(position > size)
throw Decoding_Error(name());
for(size_t j = size-position; j != size-1; ++j)
if(block[j] != 0)
throw Decoding_Error(name());
return (size-position);
}
/*
* Pad with One and Zeros Method
*/
void OneAndZeros_Padding::add_padding(secure_vector<byte>& buffer,
size_t last_byte_pos,
size_t block_size) const
{
buffer.push_back(0x80);
for(size_t i = last_byte_pos + 1; i % block_size; ++i)
buffer.push_back(0x00);
}
/*
* Unpad with One and Zeros Method
*/
size_t OneAndZeros_Padding::unpad(const byte block[], size_t size) const
{
while(size)
{
if(block[size-1] == 0x80)
break;
if(block[size-1] != 0x00)
throw Decoding_Error(name());
size--;
}
if(!size)
throw Decoding_Error(name());
return (size-1);
}
}
|