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

12

/freebsd-11-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-11-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-11-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-11-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-11-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-11-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-11-stable/crypto/openssl/apps/
H A Drand.c72 * -base64 - base64 encode output
85 int base64 = 0; local
123 } else if (strcmp(argv[i], "-base64") == 0) {
124 if (!base64)
125 base64 = 1;
144 if (hex && base64)
160 BIO_printf(bio_err, "-base64 - base64 encode output\n");
188 if (base64) {
[all...]
H A Denc.c128 int enc = 1, printkey = 0, i, base64 = 0; local
158 if (strcmp(pname, "base64") == 0)
159 base64 = 1;
167 if (!do_zlib && !base64 && (cipher == NULL)
170 if (!base64 && (cipher == NULL) && (strcmp(pname, "enc") != 0))
221 base64 = 1;
222 else if (strcmp(*argv, "-base64") == 0)
223 base64 = 1;
298 "%-14s base64 encode/decode, depending on encryption flag\n",
299 "-a/-base64");
[all...]
/freebsd-11-stable/usr.bin/uuencode/
H A Duuencode.c76 int base64; local
80 base64 = 0;
84 base64 = 1;
89 base64 = 1;
130 if (base64)
143 * Copy from in to out, encoding in base64 as you go along.
160 fprintf(output, "begin-base64 %o %s\n", mode, *av);
165 errx(1, "b64_ntop: error encoding base64");
/freebsd-11-stable/crypto/heimdal/kcm/
H A Dheaders.h77 #include <base64.h>
/freebsd-11-stable/crypto/heimdal/lib/ipc/
H A Dhi_locl.h60 #include <base64.h>
/freebsd-11-stable/libexec/dma/dmagent/
H A DMakefile10 base64.c \
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Dbio_b64.c92 EVP_ENCODE_CTX base64; member in struct:b64_struct
98 BIO_TYPE_BASE64, "base64 encoding",
168 EVP_DecodeInit(&(ctx->base64));
239 * base64 encoded stuff.
247 k = EVP_DecodeUpdate(&(ctx->base64),
251 EVP_DecodeInit(&ctx->base64);
260 EVP_DecodeInit(&ctx->base64);
328 i = EVP_DecodeUpdate(&(ctx->base64),
383 EVP_EncodeInit(&(ctx->base64));
452 EVP_EncodeUpdate(&(ctx->base64),
[all...]
/freebsd-11-stable/usr.bin/uudecode/
H A Duudecode.c70 static int base64, cflag, iflag, oflag, pflag, rflag, sflag; variable
84 base64 = 1;
97 base64 = 1;
157 if (base64)
186 base64 = 0;
192 if (strncmp(p, "begin-base64 ", 13) == 0) {
193 base64 = 1;
296 if (base64)
453 return (checkend(inbuf, "====", "error decoding base64 input stream"));
/freebsd-11-stable/kerberos5/lib/libroken/
H A DMakefile8 base64.h \
18 SRCS= base64.c \
/freebsd-11-stable/crypto/heimdal/kdc/
H A Dheaders.h89 #include <base64.h>
/freebsd-11-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-11-stable/usr.sbin/wpa/wpa_cli/
H A DMakefile13 SRCS= base64.c bitfield.c blacklist.c bss.c cli.c common.c config.c \
/freebsd-11-stable/lib/libiconv_modules/UTF7/
H A Dcitrus_utf7.c63 mode: 1, /* whether base64 mode */
109 static const char base64[] = variable
311 psenc->ch[psenc->chlen++] = base64[i];
335 psenc->ch[psenc->chlen++] = base64[i];
399 psenc->ch[psenc->chlen++] = base64[pos];
478 FILL(base64, (s - base64) + 1);
/freebsd-11-stable/usr.bin/svn/lib/libsvn_subr/
H A DMakefile14 base64.c \
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A DMakefile.in19 OPENBSD=base64.o basename.o bcrypt_pbkdf.o bindresvport.o blowfish.o daemon.o dirname.o fmt_scaled.o getcwd.o getgrouplist.o getopt_long.o getrrsetbyname.o glob.o inet_aton.o inet_ntoa.o inet_ntop.o mktemp.o pwcache.o readpassphrase.o reallocarray.o realpath.o rresvport.o setenv.o setproctitle.o sha1.o sha2.o rmd160.o md5.o sigact.o strcasestr.o strlcat.o strlcpy.o strmode.o strnlen.o strptime.o strsep.o strtonum.o strtoll.o strtoul.o strtoull.o timingsafe_bcmp.o vis.o blowfish.o bcrypt_pbkdf.o explicit_bzero.o

Completed in 328 milliseconds

12