Lines Matching refs:table64
188 static CURLcode base64_encode(const char *table64,
195 const char *padstr = &table64[64]; /* Point to padding string. */
213 *output++ = table64[ in[0] >> 2 ];
214 *output++ = table64[ ((in[0] & 0x03) << 4) | (in[1] >> 4) ];
215 *output++ = table64[ ((in[1] & 0x0F) << 2) | ((in[2] & 0xC0) >> 6) ];
216 *output++ = table64[ in[2] & 0x3F ];
222 *output++ = table64[ in[0] >> 2 ];
224 *output++ = table64[ ((in[0] & 0x03) << 4) ];
232 *output++ = table64[ ((in[0] & 0x03) << 4) | ((in[1] & 0xF0) >> 4) ];
233 *output++ = table64[ ((in[1] & 0x0F) << 2) ];