HomeSort by: relevance | last modified time | path
    Searched defs:base64 (Results 1 - 8 of 8) sorted by relevancy

  /src/sbin/cgdconfig/
cgdparse.y 62 %type <string> stringlit base64 intstr tokstr
124 bits: base64 { $$ = bits_decode_d($1); }
126 base64: stringlit label
127 | base64 stringlit { $$ = string_add_d($1, $2); }
  /src/usr.sbin/wg-keygen/
wg-keygen.c 81 base64(uint8_t key[KEY_LEN]) function in typeref:typename:char *
105 printf("%s\n", base64(key));
111 printf("%s\n", base64(key));
131 printf("%s\n", base64(pubkey));
  /src/usr.bin/uudecode/
uudecode.c 75 static int base64; variable in typeref:typename:int
90 base64 = 1;
139 warnx("%s: no \"%s\" line", inputname, base64 ?
140 "begin-base64" : "begin");
144 if (strncmp(p, "begin-base64", 12) == 0) {
145 base64 = 1;
160 base64 ? "begin-base64" : "begin");
167 base64 ? "begin-base64" : "begin")
    [all...]
  /src/usr.bin/uuencode/
uuencode.c 71 int base64, ch, mode; local in function:main
74 base64 = 0;
81 base64 = 1;
107 if (base64) {
108 (void)printf("begin-base64 %o %s\n", mode, *argv);
126 * copy from in to out, encoding in base64 as you go along.
146 errx(1, "b64_ntop: error encoding base64");
  /src/lib/libc/citrus/modules/
citrus_utf7.c 65 mode: 1, /* whether base64 mode */
136 static const char base64[] = variable in typeref:typename:const char[]
358 psenc->ch[psenc->chlen++] = base64[i];
382 psenc->ch[psenc->chlen++] = base64[i];
456 psenc->ch[psenc->chlen++] = base64[pos];
549 FILL(base64, (s - base64) + 1);
  /src/libexec/ftpd/
cmds.c 551 * Encode len bytes starting at clear using base64 encoding into encoded,
559 static const char base64[] = local in function:base64_encode
571 *e++ = base64[(c[0] >> 2) & 0x3f];
572 *e++ = base64[((c[0] << 4) & 0x30) | ((c[1] >> 4) & 0x0f)];
573 *e++ = base64[((c[1] << 2) & 0x3c) | ((c[2] >> 6) & 0x03)];
574 *e++ = base64[(c[2]) & 0x3f];
578 *e++ = base64[(c[0] >> 2) & 0x3f];
579 *e++ = base64[((c[0] << 4) & 0x30) |
581 *e++ = (i > 1) ? base64[(c[1] << 2) & 0x3c] : termchar;
  /src/share/examples/refuse/ian/libfetch/
http.c 35 * The following copyright applies to the base64 code:
565 * Base64 encoding
570 static const char base64[] = local in function:_http_base64
587 dst[0] = base64[(t >> 18) & 0x3f];
588 dst[1] = base64[(t >> 12) & 0x3f];
589 dst[2] = base64[(t >> 6) & 0x3f];
590 dst[3] = base64[(t >> 0) & 0x3f];
598 dst[0] = base64[(t >> 18) & 0x3f];
599 dst[1] = base64[(t >> 12) & 0x3f];
600 dst[2] = base64[(t >> 6) & 0x3f]
    [all...]
  /src/sys/dev/pci/
pciconf.c 539 pcireg_t base, base64, mask, mask64; local in function:pci_bar_is_reserved
568 base64 = pci_conf_read(pb->pc, tag, br + 4);
571 pci_conf_write(pb->pc, tag, br + 4, base64);
573 (((uint64_t)base64) << 32) | base);

Completed in 17 milliseconds