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

12

/freebsd-10.0-release/tools/regression/usr.bin/uuencode/
H A Dregress.sh11 REGRESSION_TEST(`base64', `uuencode -m regress.in < regress.in')
/freebsd-10.0-release/tools/regression/usr.bin/uudecode/
H A Dregress.sh8 REGRESSION_TEST_ONE(`uudecode -p < regress.base64.in', `base64')
/freebsd-10.0-release/sbin/iscontrol/
H A Dmisc.c64 static char base64[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" variable
73 if(base64[i] == c64)
108 // base64
192 *ds++ = base64[*cp >> 2];
197 *ds++ = base64[b6];
202 *ds++ = base64[b6];
203 *ds++ = base64[*cp & 0x3f];
211 *ds++ = base64[b6];
216 *ds++ = base64[b6];
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_b64encode.c66 static const char base64[] = { variable
175 archive_string_sprintf(&state->encoded_buff, "begin-base64 %o %s\n",
189 archive_strappend_char(as, base64[c]);
191 archive_strappend_char(as, base64[c]);
193 archive_strappend_char(as, base64[c]);
195 archive_strappend_char(as, base64[c]);
199 archive_strappend_char(as, base64[c]);
202 archive_strappend_char(as, base64[c]);
207 archive_strappend_char(as, base64[c]);
209 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)
358 if (!base64[*b++])
368 if (avail > 0 && base64[*b])
545 memcmp(b, "begin-base64 ", 13) == 0)
637 if (!base64[b[0]] || !base64[b[1]])
647 if (!base64[*b])
656 if (!base64[*b])
/freebsd-10.0-release/crypto/openssl/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...]
H A Denc.c118 int enc=1,printkey=0,i,base64=0; local
147 if (strcmp(pname,"base64") == 0)
148 base64=1;
156 if (!do_zlib && !base64 && (cipher == NULL)
159 if (!base64 && (cipher == NULL) && (strcmp(pname,"enc") != 0))
213 base64=1;
214 else if (strcmp(*argv,"-base64") == 0)
215 base64=1;
306 BIO_printf(bio_err,"%-14s base64 encode/decode, depending on encryption flag\n","-a/-base64");
[all...]
/freebsd-10.0-release/usr.bin/uuencode/
H A Duuencode.c75 int base64; local
79 base64 = 0;
83 base64 = 1;
88 base64 = 1;
126 if (base64)
139 * Copy from in to out, encoding in base64 as you go along.
155 fprintf(output, "begin-base64 %o %s\n", mode, *av);
160 errx(1, "b64_ntop: error encoding base64");
/freebsd-10.0-release/crypto/heimdal/kcm/
H A Dheaders.h77 #include <base64.h>
/freebsd-10.0-release/crypto/heimdal/lib/ipc/
H A Dhi_locl.h60 #include <base64.h>
/freebsd-10.0-release/crypto/openssl/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...]
/freebsd-10.0-release/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-10.0-release/kerberos5/lib/libroken/
H A DMakefile9 base64.h \
19 SRCS= base64.c \
/freebsd-10.0-release/crypto/heimdal/kdc/
H A Dheaders.h89 #include <base64.h>
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dbase64-test.c37 #include <base64.h>
/freebsd-10.0-release/lib/libiconv_modules/UTF7/
H A Dcitrus_utf7.c63 mode: 1, /* whether base64 mode */
108 static const char base64[] = variable
318 psenc->ch[psenc->chlen++] = base64[i];
342 psenc->ch[psenc->chlen++] = base64[i];
406 psenc->ch[psenc->chlen++] = base64[pos];
485 FILL(base64, (s - base64) + 1);
/freebsd-10.0-release/usr.bin/svn/lib/libsvn_subr/
H A DMakefile10 SRCS= adler32.c atomic.c auth.c base64.c cache-inprocess.c \
/freebsd-10.0-release/contrib/lukemftpd/src/
H A Dcmds.c556 * Encode len bytes starting at clear using base64 encoding into encoded,
564 static const char base64[] = local
576 *e++ = base64[(c[0] >> 2) & 0x3f];
577 *e++ = base64[((c[0] << 4) & 0x30) | ((c[1] >> 4) & 0x0f)];
578 *e++ = base64[((c[1] << 2) & 0x3c) | ((c[2] >> 6) & 0x03)];
579 *e++ = base64[(c[2]) & 0x3f];
583 *e++ = base64[(c[0] >> 2) & 0x3f];
584 *e++ = base64[((c[0] << 4) & 0x30) |
586 *e++ = (i > 1) ? base64[(c[1] << 2) & 0x3c] : termchar;
/freebsd-10.0-release/crypto/heimdal/lib/hx509/
H A Dhx_locl.h53 #include <base64.h>
/freebsd-10.0-release/usr.sbin/wpa/hostapd/
H A DMakefile10 base64.c beacon.c chap.c common.c config_file.c ctrl_iface.c \
/freebsd-10.0-release/contrib/wpa/wpa_supplicant/
H A Dwpa_supplicant.conf1168 blob-base64-exampleblob={
H A Dnmake.mak110 $(OBJDIR)\base64.obj \
137 $(OBJDIR)\config_file.obj $(OBJDIR)\base64.obj
141 $(OBJDIR)\config_file.obj $(OBJDIR)\base64.obj
/freebsd-10.0-release/lib/libfetch/
H A Dhttp.c33 * The following copyright applies to the base64 code:
964 static const char base64[] = local
980 dst[0] = base64[(t >> 18) & 0x3f];
981 dst[1] = base64[(t >> 12) & 0x3f];
982 dst[2] = base64[(t >> 6) & 0x3f];
983 dst[3] = base64[(t >> 0) & 0x3f];
991 dst[0] = base64[(t >> 18) & 0x3f];
992 dst[1] = base64[(t >> 12) & 0x3f];
993 dst[2] = base64[(t >> 6) & 0x3f];
1000 dst[0] = base64[(
[all...]
/freebsd-10.0-release/usr.sbin/portsnap/phttpget/
H A Dphttpget.c71 static const char base64[] = local
108 pc[j] = base64[(t >> 18) & 0x3f];
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dkrb5_locl.h149 #include <base64.h>

Completed in 255 milliseconds

12