Home
last modified time | relevance | path

Searched refs:Base64 (Results 1 – 3 of 3) sorted by relevance

/titanic_41/usr/src/cmd/ssh/libopenbsd-compat/common/
H A Dbase64.c68 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()
[all …]
/titanic_41/usr/src/lib/libresolv2/common/isc/
H A Dbase64.c78 static const char Base64[] = variable
169 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 …]
/titanic_41/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSDigest.c1178 static const char Base64[] = variable
1216 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()