Lines Matching refs:Base64
68 static const char Base64[] = variable
160 target[datalength++] = Base64[output[0]]; in b64_ntop()
161 target[datalength++] = Base64[output[1]]; in b64_ntop()
162 target[datalength++] = Base64[output[2]]; in b64_ntop()
163 target[datalength++] = Base64[output[3]]; in b64_ntop()
182 target[datalength++] = Base64[output[0]]; in b64_ntop()
183 target[datalength++] = Base64[output[1]]; in b64_ntop()
187 target[datalength++] = Base64[output[2]]; in b64_ntop()
218 pos = strchr(Base64, ch); in b64_pton()
227 target[tarindex] = (pos - Base64) << 2; in b64_pton()
235 target[tarindex] |= (pos - Base64) >> 4; in b64_pton()
236 target[tarindex+1] = ((pos - Base64) & 0x0f) in b64_pton()
246 target[tarindex] |= (pos - Base64) >> 2; in b64_pton()
247 target[tarindex+1] = ((pos - Base64) & 0x03) in b64_pton()
257 target[tarindex] |= (pos - Base64); in b64_pton()