Lines Matching refs:Base64
56 static const char Base64[] = variable
145 target[datalength++] = Base64[output[0]]; in b64_ntop()
146 target[datalength++] = Base64[output[1]]; in b64_ntop()
147 target[datalength++] = Base64[output[2]]; in b64_ntop()
148 target[datalength++] = Base64[output[3]]; in b64_ntop()
164 target[datalength++] = Base64[output[0]]; in b64_ntop()
165 target[datalength++] = Base64[output[1]]; in b64_ntop()
169 target[datalength++] = Base64[output[2]]; in b64_ntop()
201 pos = strchr(Base64, ch); in b64_pton()
210 target[tarindex] = (pos - Base64) << 2; in b64_pton()
218 target[tarindex] |= (pos - Base64) >> 4; in b64_pton()
219 nextbyte = ((pos - Base64) & 0x0f) << 4; in b64_pton()
232 target[tarindex] |= (pos - Base64) >> 2; in b64_pton()
233 nextbyte = ((pos - Base64) & 0x03) << 6; in b64_pton()
246 target[tarindex] |= (pos - Base64); in b64_pton()