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

12

/freebsd-13-stable/usr.bin/uuencode/tests/
H A Dregress.sh8 REGRESSION_TEST(`base64', `uuencode -m regress.in <${SRCDIR}/regress.in')
H A DMakefile7 ${PACKAGE}FILES+= regress.base64.out
/freebsd-13-stable/usr.bin/uudecode/tests/
H A Dregress.sh8 REGRESSION_TEST_ONE(`uudecode -p <${SRCDIR}/regress.base64.in', `base64')
H A DMakefile7 ${PACKAGE}FILES+= regress.base64.in
/freebsd-13-stable/contrib/ntp/lib/isc/
H A Dbase64.c18 /* $Id: base64.c,v 1.34 2009/10/21 23:48:05 tbox Exp $ */
24 #include <isc/base64.h>
48 static const char base64[] = variable
64 buf[0] = base64[(source->base[0]>>2)&0x3f];
65 buf[1] = base64[((source->base[0]<<4)&0x30)|
67 buf[2] = base64[((source->base[1]<<2)&0x3c)|
69 buf[3] = base64[source->base[2]&0x3f];
82 buf[0] = base64[(source->base[0]>>2)&0x3f];
83 buf[1] = base64[((source->base[0]<<4)&0x30)|
85 buf[2] = base64[((sourc
[all...]
/freebsd-13-stable/sbin/iscontrol/
H A Dmisc.c66 static char base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" variable
75 if(base64[i] == c64)
110 // base64
194 *ds++ = base64[*cp >> 2];
199 *ds++ = base64[b6];
204 *ds++ = base64[b6];
205 *ds++ = base64[*cp & 0x3f];
213 *ds++ = base64[b6];
218 *ds++ = base64[b6];
/freebsd-13-stable/contrib/netbsd-tests/usr.bin/gzip/
H A Dt_gzip.sh60 begin-base64 644 truncated.gz
77 begin-base64 644 crcerror.gz
94 begin-base64 644 good.gz
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_b64encode.c66 static const char base64[] = { variable
170 archive_string_sprintf(&state->encoded_buff, "begin-base64 %o %s\n",
184 archive_strappend_char(as, base64[c]);
186 archive_strappend_char(as, base64[c]);
188 archive_strappend_char(as, base64[c]);
190 archive_strappend_char(as, base64[c]);
194 archive_strappend_char(as, base64[c]);
197 archive_strappend_char(as, base64[c]);
202 archive_strappend_char(as, base64[c]);
204 archive_strappend_char(as, base64[
[all...]
H A Darchive_read_support_filter_uu.c138 static const unsigned char base64[256] = { variable
287 else if (len -nl >= 18 && memcmp(b, "begin-base64 ", 13) == 0)
341 /* "begin-base64 " */
343 if (!base64[*b++])
353 if (avail > 0 && base64[*b])
538 memcmp(b, "begin-base64 ", 13) == 0)
628 if (!base64[b[0]] || !base64[b[1]])
638 if (!base64[*b])
647 if (!base64[*
[all...]
/freebsd-13-stable/usr.bin/uuencode/
H A Duuencode.c78 int base64; local
82 base64 = 0;
86 base64 = 1;
91 base64 = 1;
132 if (base64)
145 * Copy from in to out, encoding in base64 as you go along.
162 fprintf(output, "begin-base64 %o %s\n", mode, *av);
167 errx(1, "b64_ntop: error encoding base64");
/freebsd-13-stable/crypto/heimdal/kcm/
H A Dheaders.h77 #include <base64.h>
/freebsd-13-stable/crypto/heimdal/lib/ipc/
H A Dhi_locl.h60 #include <base64.h>
/freebsd-13-stable/libexec/dma/dmagent/
H A DMakefile10 base64.c \
/freebsd-13-stable/crypto/openssl/crypto/evp/
H A Dbio_b64.c41 EVP_ENCODE_CTX *base64; member in struct:b64_struct
48 "base64 encoding",
80 ctx->base64 = EVP_ENCODE_CTX_new();
81 if (ctx->base64 == NULL) {
102 EVP_ENCODE_CTX_free(ctx->base64);
132 EVP_DecodeInit(ctx->base64);
203 * base64 encoded stuff.
211 k = EVP_DecodeUpdate(ctx->base64,
215 EVP_DecodeInit(ctx->base64);
224 EVP_DecodeInit(ctx->base64);
[all...]
/freebsd-13-stable/usr.bin/uudecode/
H A Duudecode.c72 static int base64, cflag, iflag, oflag, pflag, rflag, sflag; variable
86 base64 = 1;
99 base64 = 1;
159 if (base64)
188 base64 = 0;
194 if (strncmp(p, "begin-base64 ", 13) == 0) {
195 base64 = 1;
298 if (base64)
455 return (checkend(inbuf, "====", "error decoding base64 input stream"));
/freebsd-13-stable/kerberos5/lib/libroken/
H A DMakefile8 base64.h \
18 SRCS= base64.c \
/freebsd-13-stable/crypto/heimdal/kdc/
H A Dheaders.h89 #include <base64.h>
/freebsd-13-stable/crypto/heimdal/lib/roken/
H A Dbase64-test.c37 #include <base64.h>
H A DMakefile.am26 base64-test \
69 base64.c \
178 base64.h \
/freebsd-13-stable/usr.sbin/wpa/wpa_cli/
H A DMakefile14 SRCS= base64.c bitfield.c blacklist.c bss.c cli.c common.c config.c \
/freebsd-13-stable/lib/libiconv_modules/UTF7/
H A Dcitrus_utf7.c65 mode: 1, /* whether base64 mode */
111 static const char base64[] = variable
313 psenc->ch[psenc->chlen++] = base64[i];
337 psenc->ch[psenc->chlen++] = base64[i];
401 psenc->ch[psenc->chlen++] = base64[pos];
480 FILL(base64, (s - base64) + 1);
/freebsd-13-stable/crypto/openssl/apps/
H A Denc.c68 {"base64", OPT_A, '-', "Same as option -a"},
70 "Used with -[base64|a] to specify base64 buffer as a single line"},
109 int base64 = 0, informat = FORMAT_BINARY, outformat = FORMAT_BINARY; local
124 if (strcmp(prog, "base64") == 0) {
125 base64 = 1;
202 base64 = 1;
303 /* It must be large enough for a base64 encoded line */
304 if (base64 && bsize < 80)
312 if (base64) {
[all...]
/freebsd-13-stable/usr.bin/svn/lib/libsvn_subr/
H A DMakefile14 base64.c \
/freebsd-13-stable/contrib/wpa/hs20/client/
H A DMakefile63 OBJS += ../../src/utils/base64.o
/freebsd-13-stable/crypto/heimdal/lib/hx509/
H A Dhx_locl.h53 #include <base64.h>

Completed in 378 milliseconds

12