Searched defs:Base64 (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libresolv2/common/isc/
H A Dbase64.c78 static const char Base64[] = variable
101 Table 1: The Base64 Alphabet
169 target[datalength++] = Base64[output[0]];
170 target[datalength++] = Base64[output[1]];
171 target[datalength++] = Base64[output[2]];
172 target[datalength++] = Base64[output[3]];
191 target[datalength++] = Base64[output[0]];
192 target[datalength++] = Base64[output[1]];
196 target[datalength++] = Base64[output[2]];
230 pos = strchr(Base64, c
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSDigest.c1129 static const char Base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; variable
1166 pos = mDNSstrchr(Base64, ch);
1175 target[tarindex] = (mDNSu8)((pos - Base64) << 2);
1183 target[tarindex] |= (pos - Base64) >> 4;
1184 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x0f) << 4);
1193 target[tarindex] |= (pos - Base64) >> 2;
1194 target[tarindex+1] = (mDNSu8)(((pos - Base64) & 0x03) << 6);
1203 target[tarindex] |= (pos - Base64);

Completed in 61 milliseconds