16#pragma GCC diagnostic push
17#pragma GCC diagnostic ignored "-Wunknown-pragmas"
23 inline const char base64_enc_lookup[64] = {
24 'A',
'B',
'C',
'D',
'E',
'F',
'G',
'H',
'I',
'J',
'K',
'L',
'M',
'N',
'O',
'P',
25 'Q',
'R',
'S',
'T',
'U',
'V',
'W',
'X',
'Y',
'Z',
'a',
'b',
'c',
'd',
'e',
'f',
26 'g',
'h',
'i',
'j',
'k',
'l',
'm',
'n',
'o',
'p',
'q',
'r',
's',
't',
'u',
'v',
27 'w',
'x',
'y',
'z',
'0',
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
'+',
'/'
30 inline const uint8_t base64_dec_lookup[256] = {
32 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
33 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
34 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 62, 255, 255, 255, 63,
35 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 255, 255, 255, 64, 255, 255,
36 255, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
37 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 255, 255, 255, 255, 255,
38 255, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
39 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 255, 255, 255, 255, 255,
40 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
41 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
42 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
43 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
44 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
45 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
46 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255,
47 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
75 template<
class T,
class TR,
class AX>
76 void encode(_Inout_ std::basic_string<T, TR, AX> &out, _In_bytecount_(size)
const void *data, _In_
size_t size, _In_opt_
bool is_last =
true)
78 stdex_assert(data || !size);
81 out.reserve(out.size() +
enc_size(size));
84 for (
size_t i = 0;; i++) {
93 m_buf[
m_num++] =
reinterpret_cast<const uint8_t*
>(data)[i];
97 if (is_last &&
m_num) {
120 return ((
m_num + size + 2)/3)*4;
127 template<
class T,
class TR,
class AX>
128 void encode(_Inout_ std::basic_string<T, TR, AX> &out)
130 out += base64_enc_lookup[
m_buf[0] >> 2 ];
131 out += base64_enc_lookup[((
m_buf[0] << 4) | (
m_buf[1] >> 4)) & 0x3f];
132 out += base64_enc_lookup[((
m_buf[1] << 2) | (
m_buf[2] >> 6)) & 0x3f];
133 out += base64_enc_lookup[
m_buf[2] & 0x3f];
139 template<
class T,
class TR,
class AX>
140 void encode(_Inout_ std::basic_string<T, TR, AX> &out, _In_
size_t size)
143 out += base64_enc_lookup[
m_buf[0] >> 2];
145 out += base64_enc_lookup[((
m_buf[0] << 4) | (
m_buf[1] >> 4)) & 0x3f];
147 out += base64_enc_lookup[((
m_buf[1] << 2) | (
m_buf[2] >> 6)) & 0x3f];
148 out += base64_enc_lookup[
m_buf[2] & 0x3f];
150 out += base64_enc_lookup[(
m_buf[1] << 2) & 0x3f];
154 out += base64_enc_lookup[(
m_buf[0] << 4) & 0x3f];
179 m_max_blocks(max_blocks),
195 virtual _Success_(
return != 0) size_t
write(
196 _In_reads_bytes_opt_(length) const
void* data, _In_
size_t length)
198 stdex_assert(data || !length);
199 for (
size_t i = 0;; i++) {
206 if (!m_source->
ok()) _Unlikely_ {
207 m_state = m_source->
state();
213 m_state = stdex::stream::state_t::ok;
216 m_buf[
m_num++] =
reinterpret_cast<const uint8_t*
>(data)[i];
227 out[0] = base64_enc_lookup[
m_buf[0] >> 2 ];
228 out[1] = base64_enc_lookup[((
m_buf[0] << 4) | (
m_buf[1] >> 4)) & 0x3f];
229 out[2] = base64_enc_lookup[((
m_buf[1] << 2) | (
m_buf[2] >> 6)) & 0x3f];
230 out[3] = base64_enc_lookup[
m_buf[2] & 0x3f];
231 m_source->
write_array(out,
sizeof(*out), _countof(out));
241 out[0] = base64_enc_lookup[
m_buf[0] >> 2];
243 out[1] = base64_enc_lookup[((
m_buf[0] << 4) | (
m_buf[1] >> 4)) & 0x3f];
245 out[2] = base64_enc_lookup[((
m_buf[1] << 2) | (
m_buf[2] >> 6)) & 0x3f];
246 out[3] = base64_enc_lookup[
m_buf[2] & 0x3f];
248 out[2] = base64_enc_lookup[(
m_buf[1] << 2) & 0x3f];
252 out[1] = base64_enc_lookup[(
m_buf[0] << 4) & 0x3f];
262 m_source->
write_array(out,
sizeof(*out), _countof(out));
296 template<
class T_to,
class AX,
class T_from>
297 void decode(_Inout_ std::vector<T_to, AX> &out, _Out_
bool &is_last, _In_z_count_(size)
const T_from *data, _In_
size_t size)
302 for (
size_t k = 0; k < size; k++)
303 if (!data[k]) { size = k;
break; }
306 out.reserve(out.size() +
dec_size(size));
308 for (
size_t i = 0;; i++) {
311 size_t nibbles =
decode(out);
321 size_t x =
static_cast<size_t>(data[i]);
323 if ((
m_buf[
m_num] = x < _countof(base64_dec_lookup) ? base64_dec_lookup[x] : 255) != 255)
345 return ((
m_num + size + 3)/4)*3;
352 template<
class T,
class AX>
353 size_t decode(_Inout_ std::vector<T, AX> &out)
356 out.push_back((T)(((
m_buf[0] << 2) | (
m_buf[1] >> 4)) & 0xff));
358 out.push_back((T)(((
m_buf[1] << 4) | (
m_buf[2] >> 2)) & 0xff));
360 out.push_back((T)(((
m_buf[2] << 6) |
m_buf[3]) & 0xff));
374#pragma warning(disable: 26495)
388#pragma warning(suppress: 6101)
389 virtual _Success_(
return != 0 || length == 0) size_t
read(
390 _Out_writes_bytes_to_opt_(length, return)
void* data, _In_
size_t length)
392 stdex_assert(data || !length);
393 for (
size_t to_read = length;;) {
398 m_state = stdex::stream::state_t::ok;
403 reinterpret_cast<uint8_t*&
>(data) +=
m_temp_len;
412 if (!m_source->
ok()) _Unlikely_ {
413 m_state = m_source->
state();
414 return length - to_read;
416 if ((
m_buf[
m_num] = base64_dec_lookup[x]) != 255)
426 m_state = stdex::stream::state_t::ok;
427 return length - to_read;
463#pragma GCC diagnostic pop
Base64 decoding session.
Definition base64.hpp:275
size_t m_num
Number of bytes used in m_buf
Definition base64.hpp:370
size_t decode(std::vector< T, AX > &out)
Decodes one complete internal buffer of data.
Definition base64.hpp:353
base64_dec() noexcept
Constructs blank decoding session.
Definition base64.hpp:280
size_t dec_size(size_t size) const noexcept
Returns maximum decoded size.
Definition base64.hpp:343
void clear() noexcept
Resets decoding session.
Definition base64.hpp:331
void decode(std::vector< T_to, AX > &out, bool &is_last, const T_from *data, size_t size)
Decodes one block of information, and appends it to the output.
Definition base64.hpp:297
uint8_t m_buf[4]
Internal buffer.
Definition base64.hpp:369
Base64 encoding session.
Definition base64.hpp:55
void encode(std::basic_string< T, TR, AX > &out, size_t size)
Encodes partial internal buffer of data.
Definition base64.hpp:140
void encode(std::basic_string< T, TR, AX > &out)
Encodes one complete internal buffer of data.
Definition base64.hpp:128
void encode(std::basic_string< T, TR, AX > &out, const void *data, size_t size, bool is_last=true)
Encodes one block of information, and appends it to the output.
Definition base64.hpp:76
size_t m_num
Number of bytes used in m_buf
Definition base64.hpp:168
uint8_t m_buf[3]
Internal buffer.
Definition base64.hpp:167
base64_enc() noexcept
Constructs blank encoding session.
Definition base64.hpp:60
void clear() noexcept
Resets encoding session.
Definition base64.hpp:106
size_t enc_size(size_t size) const noexcept
Returns maximum encoded size.
Definition base64.hpp:118
Converts from Base64 when reading from a stream.
Definition base64.hpp:380
void decode()
Decodes one complete internal buffer of data.
Definition base64.hpp:436
char m_temp[3]
Temporary buffer.
Definition base64.hpp:453
size_t m_temp_len
Number of bytes of data in m_temp
Definition base64.hpp:456
virtual size_t read(_Out_writes_bytes_to_opt_(length, return) void *data, size_t length)
Reads block of data from the stream.
Definition base64.hpp:389
size_t m_temp_off
Index of data start in m_temp
Definition base64.hpp:455
Converts to Base64 when writing to a stream.
Definition base64.hpp:175
size_t m_num_blocks
Definition base64.hpp:268
void encode()
Encodes one complete internal buffer of data.
Definition base64.hpp:224
void encode(size_t size)
Encodes partial internal buffer of data.
Definition base64.hpp:237
virtual size_t write(_In_reads_bytes_opt_(length) const void *data, size_t length)
Writes block of data to the stream.
Definition base64.hpp:195
Basic stream operations.
Definition stream.hpp:85
bool ok() const
Returns true if the stream state is clean i.e. previous operation was successful.
Definition stream.hpp:181
state_t state() const
Returns stream state after last operation.
Definition stream.hpp:176
size_t write_array(_In_reads_bytes_opt_(size *count) const void *array, size_t size, size_t count)
Writes an array of data to the stream.
Definition stream.hpp:394
Modifies data on the fly when reading from/writing to a source stream. Could also be used to modify r...
Definition stream.hpp:1020