19 const std::string Base64::alphabet64(
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" );
20 const char Base64::pad =
'=';
22 const std::string::size_type Base64::np = std::string::npos;
23 const std::string::size_type Base64::table64[] =
25 np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
26 np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
27 np, np, np, 62, np, np, np, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, np, np,
28 np, np, np, np, np, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
29 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, np, np, np, np, np, np, 26, 27, 28,
30 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48,
31 49, 50, 51, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
32 np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
33 np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
34 np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
35 np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
36 np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np,
37 np, np, np, np, np, np, np, np, np, np, np, np, np, np, np, np
44 const std::string::size_type length = input.length();
46 encoded.reserve( length * 2 );
48 for( std::string::size_type i = 0; i < length; ++i )
50 c = ( input[i] >> 2 ) & 0x3f;
51 encoded.append( 1, alphabet64[c] );
53 c = ( input[i] << 4 ) & 0x3f;
55 c |= ( ( input[i] >> 4 ) & 0x0f );
56 encoded.append( 1, alphabet64[c] );
60 c = ( input[i] << 2 ) & 0x3c;
62 c |= ( input[i] >> 6 ) & 0x03;
63 encoded.append( 1, alphabet64[c] );
68 encoded.append( 1, pad );
74 encoded.append( 1, alphabet64[c] );
78 encoded.append( 1, pad );
88 const std::string::size_type length = input.length();
91 decoded.reserve( length );
93 for( std::string::size_type i = 0; i < length; ++i )
95 c = (char)table64[(
unsigned char)input[i]];
97 d = (char)table64[(
unsigned char)input[i]];
98 c = ( c << 2 ) | ( ( d >> 4 ) & 0x3 );
99 decoded.append( 1, c );
106 c = (char)table64[(
unsigned char)input[i]];
107 d = ( ( d << 4 ) & 0xf0 ) | ( ( c >> 2 ) & 0xf );
108 decoded.append( 1, d );
117 d = (char)table64[(
unsigned char)input[i]];
118 c = ( ( c << 6 ) & 0xc0 ) | d;
119 decoded.append( 1, c );