Lines Matching refs:Base64
58 static const char Base64[] = variable
149 target[datalength++] = Base64[output[0]]; in b64_ntop()
150 target[datalength++] = Base64[output[1]]; in b64_ntop()
151 target[datalength++] = Base64[output[2]]; in b64_ntop()
152 target[datalength++] = Base64[output[3]]; in b64_ntop()
171 target[datalength++] = Base64[output[0]]; in b64_ntop()
172 target[datalength++] = Base64[output[1]]; in b64_ntop()
176 target[datalength++] = Base64[output[2]]; in b64_ntop()
208 pos = strchr(Base64, ch); in b64_pton()
217 target[tarindex] = (pos - Base64) << 2; in b64_pton()
225 target[tarindex] |= (pos - Base64) >> 4; in b64_pton()
226 nextbyte = ((pos - Base64) & 0x0f) << 4; in b64_pton()
239 target[tarindex] |= (pos - Base64) >> 2; in b64_pton()
240 nextbyte = ((pos - Base64) & 0x03) << 6; in b64_pton()
253 target[tarindex] |= (pos - Base64); in b64_pton()