Lines Matching refs:Base64
64 static const char Base64[] = variable
153 target[datalength++] = Base64[output[0]]; in b64_ntop()
154 target[datalength++] = Base64[output[1]]; in b64_ntop()
155 target[datalength++] = Base64[output[2]]; in b64_ntop()
156 target[datalength++] = Base64[output[3]]; in b64_ntop()
172 target[datalength++] = Base64[output[0]]; in b64_ntop()
173 target[datalength++] = Base64[output[1]]; in b64_ntop()
177 target[datalength++] = Base64[output[2]]; in b64_ntop()
212 pos = strchr(Base64, ch); in b64_pton()
221 target[tarindex] = (pos - Base64) << 2; in b64_pton()
229 target[tarindex] |= (pos - Base64) >> 4; in b64_pton()
230 target[tarindex+1] = ((pos - Base64) & 0x0f) in b64_pton()
240 target[tarindex] |= (pos - Base64) >> 2; in b64_pton()
241 target[tarindex+1] = ((pos - Base64) & 0x03) in b64_pton()
251 target[tarindex] |= (pos - Base64); in b64_pton()