Lines Matching refs:Base64
74 static const char Base64[] = variable
165 target[datalength++] = Base64[output[0]]; in b64_ntop()
166 target[datalength++] = Base64[output[1]]; in b64_ntop()
167 target[datalength++] = Base64[output[2]]; in b64_ntop()
168 target[datalength++] = Base64[output[3]]; in b64_ntop()
187 target[datalength++] = Base64[output[0]]; in b64_ntop()
188 target[datalength++] = Base64[output[1]]; in b64_ntop()
192 target[datalength++] = Base64[output[2]]; in b64_ntop()
226 pos = strchr(Base64, ch);
235 target[tarindex] = (pos - Base64) << 2;
243 target[tarindex] |= (pos - Base64) >> 4;
244 target[tarindex+1] = ((pos - Base64) & 0x0f)
254 target[tarindex] |= (pos - Base64) >> 2;
255 target[tarindex+1] = ((pos - Base64) & 0x03)
265 target[tarindex] |= (pos - Base64);