Lines Matching defs:Base64
75 static const char Base64[] =
98 Table 1: The Base64 Alphabet
171 target[datalength++] = Base64[output[0]];
172 target[datalength++] = Base64[output[1]];
173 target[datalength++] = Base64[output[2]];
174 target[datalength++] = Base64[output[3]];
195 target[datalength++] = Base64[output[0]];
196 target[datalength++] = Base64[output[1]];
200 target[datalength++] = Base64[output[2]];
237 pos = strchr(Base64, ch);
246 target[tarindex] = (u_char)(pos - Base64) << 2;
255 (uint32_t)(pos - Base64) >> 4;
256 nextbyte = (u_char)((pos - Base64) & 0x0f) << 4;
270 (uint32_t)(pos - Base64) >> 2;
271 nextbyte = (u_char)((pos - Base64) & 0x03) << 6;
284 target[tarindex] |= (u_char)(pos - Base64);