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 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
/*************************************************
* Base64 Encoder/Decoder Source File *
* (C) 1999-2005 The Botan Project *
*************************************************/
#include <botan/base64.h>
#include <botan/charset.h>
namespace Botan {
/*************************************************
* Base64_Encoder Constructor *
*************************************************/
Base64_Encoder::Base64_Encoder(bool breaks, u32bit length) :
line_length(breaks ? length : 0)
{
in.create(48);
out.create(4);
counter = position = 0;
}
/*************************************************
* Base64 Encoding Operation *
*************************************************/
void Base64_Encoder::encode(const byte in[3], byte out[4])
{
out[0] = BIN_TO_BASE64[((in[0] & 0xFC) >> 2)];
out[1] = BIN_TO_BASE64[((in[0] & 0x03) << 4) | (in[1] >> 4)];
out[2] = BIN_TO_BASE64[((in[1] & 0x0F) << 2) | (in[2] >> 6)];
out[3] = BIN_TO_BASE64[((in[2] & 0x3F) )];
}
/*************************************************
* Encode and send a block *
*************************************************/
void Base64_Encoder::encode_and_send(const byte block[], u32bit length)
{
for(u32bit j = 0; j != length; j += 3)
{
encode(block + j, out);
do_output(out, 4);
}
}
/*************************************************
* Handle the output *
*************************************************/
void Base64_Encoder::do_output(const byte input[], u32bit length)
{
if(line_length == 0)
send(input, length);
else
{
u32bit remaining = length, offset = 0;
while(remaining)
{
u32bit sent = std::min(line_length - counter, remaining);
send(input + offset, sent);
counter += sent;
remaining -= sent;
offset += sent;
if(counter == line_length)
{
send('\n');
counter = 0;
}
}
}
}
/*************************************************
* Convert some data into Base64 *
*************************************************/
void Base64_Encoder::write(const byte input[], u32bit length)
{
in.copy(position, input, length);
if(position + length >= in.size())
{
encode_and_send(in, in.size());
input += (in.size() - position);
length -= (in.size() - position);
while(length >= in.size())
{
encode_and_send(input, in.size());
input += in.size();
length -= in.size();
}
in.copy(input, length);
position = 0;
}
position += length;
}
/*************************************************
* Flush buffers *
*************************************************/
void Base64_Encoder::end_msg()
{
u32bit start_of_last_block = 3 * (position / 3),
left_over = position % 3;
encode_and_send(in, start_of_last_block);
if(left_over)
{
SecureBuffer<byte, 3> remainder(in + start_of_last_block, left_over);
encode(remainder, out);
u32bit empty_bits = 8 * (3 - left_over), index = 4 - 1;
while(empty_bits >= 8)
{
out[index--] = '=';
empty_bits -= 6;
}
do_output(out, 4);
}
// XXX: monotone requires a terminating newline in all cases,
// for compatibility with cryptopp.
send('\n');
counter = position = 0;
}
/*************************************************
* Base64_Decoder Constructor *
*************************************************/
Base64_Decoder::Base64_Decoder(Decoder_Checking c) : checking(c)
{
in.create(48);
out.create(3);
position = 0;
}
/*************************************************
* Check if a character is a valid Base64 char *
*************************************************/
bool Base64_Decoder::is_valid(byte in)
{
return (BASE64_TO_BIN[in] != 0x80);
}
/*************************************************
* Base64 Decoding Operation *
*************************************************/
void Base64_Decoder::decode(const byte in[4], byte out[3])
{
out[0] = (byte)((BASE64_TO_BIN[in[0]] << 2) | (BASE64_TO_BIN[in[1]] >> 4));
out[1] = (byte)((BASE64_TO_BIN[in[1]] << 4) | (BASE64_TO_BIN[in[2]] >> 2));
out[2] = (byte)((BASE64_TO_BIN[in[2]] << 6) | (BASE64_TO_BIN[in[3]]));
}
/*************************************************
* Decode and send a block *
*************************************************/
void Base64_Decoder::decode_and_send(const byte block[], u32bit length)
{
for(u32bit j = 0; j != length; j += 4)
{
decode(block + j, out);
send(out, 3);
}
}
/*************************************************
* Handle processing an invalid character *
*************************************************/
void Base64_Decoder::handle_bad_char(byte c)
{
if(checking == NONE) return;
if((checking == IGNORE_WS) && is_space(c)) return;
throw Decoding_Error("Base64_Decoder: Invalid base64 character: " + c);
}
/*************************************************
* Convert some data from Base64 *
*************************************************/
void Base64_Decoder::write(const byte input[], u32bit length)
{
for(u32bit j = 0; j != length; j++)
{
if(is_valid(input[j]))
in[position++] = input[j];
else
handle_bad_char(input[j]);
if(position == in.size())
{
decode_and_send(in, in.size());
position = 0;
}
}
}
/*************************************************
* Flush buffers *
*************************************************/
void Base64_Decoder::end_msg()
{
if(position != 0)
{
u32bit start_of_last_block = 4 * (position / 4),
left_over = position % 4;
decode_and_send(in, start_of_last_block);
if(left_over)
{
SecureBuffer<byte, 4> remainder(in + start_of_last_block, left_over);
decode(remainder, out);
send(out, ((left_over == 1) ? (1) : (left_over - 1)));
}
}
position = 0;
}
}
|