Searched refs:Base64 (Results 1 – 3 of 3) sorted by relevance
68 static const char Base64[] = variable160 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()[all …]
78 static const char Base64[] = variable169 target[datalength++] = Base64[output[0]]; in b64_ntop()170 target[datalength++] = Base64[output[1]]; in b64_ntop()171 target[datalength++] = Base64[output[2]]; in b64_ntop()172 target[datalength++] = Base64[output[3]]; in b64_ntop()191 target[datalength++] = Base64[output[0]]; in b64_ntop()192 target[datalength++] = Base64[output[1]]; in b64_ntop()196 target[datalength++] = Base64[output[2]]; in b64_ntop()230 pos = strchr(Base64, ch);239 target[tarindex] = (pos - Base64) << 2;[all …]
1178 static const char Base64[] = variable1216 pos = mDNSstrchr(Base64, ch); in DNSDigest_Base64ToBin()1225 target[tarindex] = (mDNSu8)((pos - Base64) << 2); in DNSDigest_Base64ToBin()1233 target[tarindex] |= (pos - Base64) >> 4; in DNSDigest_Base64ToBin()1234 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x0f) << 4); in DNSDigest_Base64ToBin()1243 target[tarindex] |= (pos - Base64) >> 2; in DNSDigest_Base64ToBin()1244 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x03) << 6); in DNSDigest_Base64ToBin()1253 target[tarindex] |= (pos - Base64); in DNSDigest_Base64ToBin()