Searched refs:Base64 (Results 1 – 15 of 15) sorted by relevance
65 static const char Base64[] = variable154 target[datalength++] = Base64[output[0]]; in b64_ntop()155 target[datalength++] = Base64[output[1]]; in b64_ntop()156 target[datalength++] = Base64[output[2]]; in b64_ntop()157 target[datalength++] = Base64[output[3]]; in b64_ntop()173 target[datalength++] = Base64[output[0]]; in b64_ntop()174 target[datalength++] = Base64[output[1]]; in b64_ntop()178 target[datalength++] = Base64[output[2]]; in b64_ntop()213 pos = strchr(Base64, ch); in b64_pton()222 target[tarindex] = (pos - Base64) << 2; in b64_pton()[all …]
61 static const char Base64[] = variable152 target[datalength++] = Base64[output[0]]; in b64_ntop()153 target[datalength++] = Base64[output[1]]; in b64_ntop()154 target[datalength++] = Base64[output[2]]; in b64_ntop()155 target[datalength++] = Base64[output[3]]; in b64_ntop()174 target[datalength++] = Base64[output[0]]; in b64_ntop()175 target[datalength++] = Base64[output[1]]; in b64_ntop()179 target[datalength++] = Base64[output[2]]; in b64_ntop()211 pos = strchr(Base64, ch); in b64_pton()220 target[tarindex] = (pos - Base64) << 2; in b64_pton()[all …]
47 static const char Base64[] = variable141 pos = strchr(Base64, ch); in ldns_b64_pton()152 target[tarindex] = (pos - Base64) << 2; in ldns_b64_pton()160 target[tarindex] |= (pos - Base64) >> 4; in ldns_b64_pton()161 target[tarindex+1] = ((pos - Base64) & 0x0f) in ldns_b64_pton()171 target[tarindex] |= (pos - Base64) >> 2; in ldns_b64_pton()172 target[tarindex+1] = ((pos - Base64) & 0x03) in ldns_b64_pton()182 target[tarindex] |= (pos - Base64); in ldns_b64_pton()
47 static const char Base64[] = variable148 target[datalength++] = Base64[output[0]]; in ldns_b64_ntop()149 target[datalength++] = Base64[output[1]]; in ldns_b64_ntop()150 target[datalength++] = Base64[output[2]]; in ldns_b64_ntop()151 target[datalength++] = Base64[output[3]]; in ldns_b64_ntop()171 target[datalength++] = Base64[output[0]]; in ldns_b64_ntop()172 target[datalength++] = Base64[output[1]]; in ldns_b64_ntop()176 target[datalength++] = Base64[output[2]]; in ldns_b64_ntop()
22 Base64 BIOs do not support BIO_gets() or BIO_puts().56 Base64 encode the string "Hello World\n" and write the result70 Read Base64 encoded data from standard input and write the decoded
38 std::string Base64(const Unit &U);
155 std::string Base64(const Unit &U) { in Base64() function
646 Printf("Base64: %s\n", Base64(U).c_str()); in WriteUnitToFileWithPrefix()
38 use MIME::Base64;
171 \ Convert a Base64 character to its numerical value. Returned value is172 \ 0 to 63 for Base64 characters, -1 for '=', and -2 for all other characters.222 \ Decode the four next Base64 characters. Returned value is:
49 or explicitly provided. Base64 encoding or decoding can also be performed91 Base64 process the data. This means that if encryption is taking place410 Base64 decode a file then decrypt it using a password supplied in a file:
409 Base64 Encoding
1665 char Base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+_"; local1704 b64[(4 * i) + j] = Base64[(bits & 0x3f)];
6510 In certain cases, 7->8 bit MIME decoding of Base64 text could leave7262 If a Base64 encoded text/plain message has no trailing newline in8456 a seven bit format (Quoted-Printable or Base64). It is
2587 Base64 encoding of binary data. If an attacker is able to supply very large