Lines Matching refs:Base64
61 static const char Base64[] = variable
152 target[datalength++] = Base64[output[0]]; in b64_ntop()
153 target[datalength++] = Base64[output[1]]; in b64_ntop()
154 target[datalength++] = Base64[output[2]]; in b64_ntop()
155 target[datalength++] = Base64[output[3]]; in b64_ntop()
174 target[datalength++] = Base64[output[0]]; in b64_ntop()
175 target[datalength++] = Base64[output[1]]; in b64_ntop()
179 target[datalength++] = Base64[output[2]]; in b64_ntop()
211 pos = strchr(Base64, ch); in b64_pton()
220 target[tarindex] = (pos - Base64) << 2; in b64_pton()
228 target[tarindex] |= (pos - Base64) >> 4; in b64_pton()
229 nextbyte = ((pos - Base64) & 0x0f) << 4; in b64_pton()
242 target[tarindex] |= (pos - Base64) >> 2; in b64_pton()
243 nextbyte = ((pos - Base64) & 0x03) << 6; in b64_pton()
256 target[tarindex] |= (pos - Base64); in b64_pton()