Searched defs:base64 (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/cmd/bnu/
H A Duuencode.c131 * using base64 encoding or the historical algorithm
145 (void) snprintf(oline, sizeof (oline), "begin-base64 %lo %s\n",
180 encode(FILE *in, FILE *out, int base64) argument
188 if (! base64) {
225 /* base64 algorithm */
233 * base64 lines can be no longer than that
H A Duudecode.c61 * base64 decoding table
89 /* true if the character is in the base64 encoding table */
188 * the check for begin-base64 obviously needs to come
193 if (strncmp(buf, "begin-base64", 12) == 0) {
288 decode(FILE *in, FILE *out, int base64) argument
296 if (! base64) { /* use historical algorithm */
353 } else { /* use base64 algorithm */
367 * if we've gathered 4 base64 octets
389 * handle any remaining base64 octets at end
462 * base64 algorith
[all...]
/illumos-gate/usr/src/lib/print/libhttp-core/common/
H A Dhttp.c1744 base64; /* Value of this character */ local
1767 base64 = *in - 'A';
1769 base64 = *in - 'a' + 26;
1771 base64 = *in - '0' + 52;
1773 base64 = 62;
1775 base64 = 63;
1789 *outptr = base64 << 2;
1794 *outptr++ |= (base64 >> 4) & 3;
1796 *outptr = (base64 << 4) & 255;
1801 *outptr++ |= (base64 >>
1850 static const char base64[] = /* Base64 characters... */ local
[all...]
/illumos-gate/usr/src/uts/common/io/scsi/adapters/iscsi/
H A DiscsiAuthClient.c372 iscsiAuthClientDataToText(int base64, unsigned char *data, argument
377 if (base64) {
1115 (void) iscsiAuthClientDataToText(client->base64,
1863 if (iscsiAuthClientDataToText(client->base64,
2002 client->base64 = FALSE;
2500 iscsiAuthClientSetBase64(IscsiAuthClient * client, int base64) argument
2511 client->base64 = base64;
H A DiscsiAuthClient.h271 int base64; member in struct:iscsiAuthClient_t
/illumos-gate/usr/src/uts/common/sys/
H A Discsi_authclient.h272 int base64; member in struct:iscsiAuthClient_t

Completed in 140 milliseconds