Home | History | Annotate | Download | only in libfetch

Lines Matching defs:base64

35  * The following copyright applies to the base64 code:
565 * Base64 encoding
570 static const char base64[] =
587 dst[0] = base64[(t >> 18) & 0x3f];
588 dst[1] = base64[(t >> 12) & 0x3f];
589 dst[2] = base64[(t >> 6) & 0x3f];
590 dst[3] = base64[(t >> 0) & 0x3f];
598 dst[0] = base64[(t >> 18) & 0x3f];
599 dst[1] = base64[(t >> 12) & 0x3f];
600 dst[2] = base64[(t >> 6) & 0x3f];
607 dst[0] = base64[(t >> 18) & 0x3f];
608 dst[1] = base64[(t >> 12) & 0x3f];