Searched refs:ENCODE_BASE64 (Results 1 – 9 of 9) sorted by relevance
32 static const uint8_t ENCODE_BASE64[64] = { variable85 aOutput.emplace_back( ENCODE_BASE64[( value >> 18 ) & 0x3F] ); in encode()86 aOutput.emplace_back( ENCODE_BASE64[( value >> 12 ) & 0x3F] ); in encode()87 aOutput.emplace_back( ENCODE_BASE64[( value >> 6 ) & 0x3F] ); in encode()88 aOutput.emplace_back( ENCODE_BASE64[value & 0x3F] ); in encode()100 aOutput.emplace_back( ENCODE_BASE64[( value >> 12 ) & 0x3F] ); in encode()107 aOutput.emplace_back( ENCODE_BASE64[( value >> 6 ) & 0x3F] ); in encode()108 aOutput.emplace_back( ENCODE_BASE64[value & 0x3F] ); in encode()
22 static const std::uint8_t ENCODE_BASE64[64] = { variable67 output[3] = ENCODE_BASE64[value & 0x3F]; in encode_base64()68 value >>= 6; output[2] = ENCODE_BASE64[value & 0x3F]; in encode_base64()69 value >>= 6; output[1] = ENCODE_BASE64[value & 0x3F]; in encode_base64()70 value >>= 6; output[0] = ENCODE_BASE64[value]; in encode_base64()80 output[2] = ENCODE_BASE64[value & 0x3F]; in encode_base64()87 output[1] = ENCODE_BASE64[value & 0x3F]; in encode_base64()89 output[0] = ENCODE_BASE64[value]; in encode_base64()
170 case ENCODE_BASE64: in encode()182 case ENCODE_BASE64: in decode()246 { "base64", ENCODE_BASE64 },
40 ENCODE_BASE64, enumerator
54 #define ENCODE_BASE64 0x0002 macro
848 case ENCODE_BASE64: in Syslog_FormatPayload()1432 op_data->payload_encoding = ENCODE_BASE64; in OpSyslog_ParseArgs()
24 ENCODE_BASE64, /* base64 */ enumerator642 decode = ENCODE_BASE64; in process()767 case ENCODE_BASE64: in process()