Lines Matching refs:Base64
65 static const char Base64[] = variable
154 target[datalength++] = Base64[output[0]]; in b64_ntop()
155 target[datalength++] = Base64[output[1]]; in b64_ntop()
156 target[datalength++] = Base64[output[2]]; in b64_ntop()
157 target[datalength++] = Base64[output[3]]; in b64_ntop()
173 target[datalength++] = Base64[output[0]]; in b64_ntop()
174 target[datalength++] = Base64[output[1]]; in b64_ntop()
178 target[datalength++] = Base64[output[2]]; in b64_ntop()
213 pos = strchr(Base64, ch); in b64_pton()
222 target[tarindex] = (pos - Base64) << 2; in b64_pton()
230 target[tarindex] |= (pos - Base64) >> 4; in b64_pton()
231 target[tarindex+1] = ((pos - Base64) & 0x0f) in b64_pton()
241 target[tarindex] |= (pos - Base64) >> 2; in b64_pton()
242 target[tarindex+1] = ((pos - Base64) & 0x03) in b64_pton()
252 target[tarindex] |= (pos - Base64); in b64_pton()