Lines Matching refs:base64
24 #include <isc/base64.h>
48 static const char base64[] =
64 buf[0] = base64[(source->base[0]>>2)&0x3f];
65 buf[1] = base64[((source->base[0]<<4)&0x30)|
67 buf[2] = base64[((source->base[1]<<2)&0x3c)|
69 buf[3] = base64[source->base[2]&0x3f];
82 buf[0] = base64[(source->base[0]>>2)&0x3f];
83 buf[1] = base64[((source->base[0]<<4)&0x30)|
85 buf[2] = base64[((source->base[1]<<2)&0x3c)];
90 buf[0] = base64[(source->base[0]>>2)&0x3f];
91 buf[1] = base64[((source->base[0]<<4)&0x30)];
100 * State of a base64 decoding process in progress.
105 int digits; /*%< Number of buffered base64 digits */
125 if ((s = strchr(base64, c)) == NULL)
127 ctx->val[ctx->digits++] = s - base64;