Searched refs:base64 (Results 1 - 25 of 82) sorted by relevance

1234

/netbsd-6-1-5-RELEASE/usr.sbin/dhcp/dst/
H A DMakefile6 SRCS = dst_support.c dst_api.c hmac_link.c md5_dgst.c base64.c prandom.c
/netbsd-6-1-5-RELEASE/sys/modules/iscsi/
H A DMakefile8 SRCS= base64.c iscsi_ioctl.c iscsi_main.c iscsi_profile.c iscsi_rcv.c
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/
H A Dbase64.c20 /* Id: base64.c,v 1.34 2009/10/21 23:48:05 tbox Exp */
26 #include <isc/base64.h>
50 static const char base64[] = variable
66 buf[0] = base64[(source->base[0]>>2)&0x3f];
67 buf[1] = base64[((source->base[0]<<4)&0x30)|
69 buf[2] = base64[((source->base[1]<<2)&0x3c)|
71 buf[3] = base64[source->base[2]&0x3f];
84 buf[0] = base64[(source->base[0]>>2)&0x3f];
85 buf[1] = base64[((source->base[0]<<4)&0x30)|
87 buf[2] = base64[((sourc
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/
H A Dbase64.c20 /* Id: base64.c,v 1.32 2007/06/19 23:47:17 tbox Exp */
26 #include <isc/base64.h>
50 static const char base64[] = variable
66 buf[0] = base64[(source->base[0]>>2)&0x3f];
67 buf[1] = base64[((source->base[0]<<4)&0x30)|
69 buf[2] = base64[((source->base[1]<<2)&0x3c)|
71 buf[3] = base64[source->base[2]&0x3f];
84 buf[0] = base64[(source->base[0]>>2)&0x3f];
85 buf[1] = base64[((source->base[0]<<4)&0x30)|
87 buf[2] = base64[((sourc
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/lib/libisccc/
H A DMakefile14 SRCS= alist.c base64.c cc.c ccmsg.c lib.c result.c sexpr.c symtab.c \
/netbsd-6-1-5-RELEASE/tests/sbin/resize_ffs/
H A DMakefile13 FILES= testdata.tar.gz.base64
/netbsd-6-1-5-RELEASE/tests/util/
H A Dt_gzip.sh60 begin-base64 644 truncated.gz
77 begin-base64 644 crcerror.gz
94 begin-base64 644 good.gz
/netbsd-6-1-5-RELEASE/crypto/external/bsd/netpgp/dist/src/lib/
H A Dwriter.c550 base64_t *base64; local
553 base64 = pgp_writer_get_arg(writer);
555 base64->checksum = pgp_crc24(base64->checksum, src[n]);
556 if (base64->pos == 0) {
565 base64->t = (src[n++] & 3) << 4;
566 base64->pos = 1;
567 } else if (base64->pos == 1) {
569 base64->t += (unsigned)src[n] >> 4;
570 if (!stacked_write(writer, &b64map[base64
603 base64_t *base64; local
688 base64_t *base64; local
721 base64_t *base64; local
766 base64_t *base64; local
800 base64_t *base64; local
878 base64_t *base64; local
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/uudecode/
H A Duudecode.c75 static int base64, pflag; variable
90 base64 = 1;
132 warnx("%s: no \"%s\" line", filename, base64 ?
133 "begin-base64" : "begin");
137 if (strncmp(p, "begin-base64", 12) == 0) {
138 base64 = 1;
153 base64 ? "begin-base64" : "begin");
160 base64 ? "begin-base64"
[all...]
/netbsd-6-1-5-RELEASE/crypto/dist/ipsec-tools/src/racoon/
H A Dprsa_tok.l54 base64 [A-Za-z0-9+/=]
69 0s{base64}+ {
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/test/
H A Dtestenc19 echo base64
43 echo $i base64
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/src/utils/
H A DMakefile16 base64.o \
/netbsd-6-1-5-RELEASE/sbin/cgdconfig/
H A Dcgdparse.y62 %type <string> stringlit base64 intstr tokstr
118 bits: base64 { $$ = bits_decode_d($1); }
120 base64: stringlit label
121 | base64 stringlit { $$ = string_add_d($1, $2); }
/netbsd-6-1-5-RELEASE/usr.bin/uuencode/
H A Duuencode.c71 int base64, ch, mode; local
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");
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/ms/
H A Dtenc.bat9 echo test base64 %1 %2 %3 %4 %5 %6
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isccc/
H A Dbase64.c34 /* Id: base64.c,v 1.8 2007/08/28 07:20:43 tbox Exp */
40 #include <isc/base64.h>
45 #include <isccc/base64.h>
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/apps/
H A Drand.c71 * -base64 - base64 encode output
84 int base64 = 0; local
128 else if (strcmp(argv[i], "-base64") == 0)
130 if (!base64)
131 base64 = 1;
157 if (hex && base64)
172 BIO_printf(bio_err, "-base64 - base64 encode output\n");
204 if (base64)
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tools/
H A Disc-hmac-fixup.c23 #include <isc/base64.h>
40 char base64[(1024*4)/3]; local
130 isc_buffer_init(&buf, base64, sizeof(base64));
136 fprintf(stdout, "%.*s\n", (int)isc_buffer_usedlength(&buf), base64);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/kcm/
H A Dheaders.h79 #include <krb5/base64.h>
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hdb/
H A Dtest_mkey.c6 #include <krb5/base64.h>
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/ipc/
H A Dhi_locl.h62 #include <krb5/base64.h>
/netbsd-6-1-5-RELEASE/external/bsd/openldap/lib/liblutil/
H A DMakefile14 SRCS= base64.c entropy.c sasl.c signal.c hash.c passfile.c \
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/crypto/evp/
H A Dbio_b64.c89 EVP_ENCODE_CTX base64; member in struct:b64_struct
96 BIO_TYPE_BASE64,"base64 encoding",
163 EVP_DecodeInit(&(ctx->base64));
237 * base64 encoded stuff. */
245 k=EVP_DecodeUpdate(&(ctx->base64),
249 EVP_DecodeInit(&ctx->base64);
260 EVP_DecodeInit(&ctx->base64);
340 i=EVP_DecodeUpdate(&(ctx->base64),
390 EVP_EncodeInit(&(ctx->base64));
460 EVP_EncodeUpdate(&(ctx->base64),
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/openssl/dist/demos/
H A Db64.c88 int enc=1,printkey=0,i,base64=0; local
102 base64=1;
171 /* It must be large enough for a base64 encoded line */
226 if (base64)
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/lib/libroken/
H A DMakefile16 base64.c \
73 INCS= base64.h \

Completed in 293 milliseconds

1234