Searched refs:base64 (Results 51 - 75 of 82) sorted by relevance

1234

/netbsd-6-1-5-RELEASE/dist/pppd/pppd/
H A Deap.c362 static char base64[] = variable
384 *outp++ = base64[(bs->bs_bits >> 18) & 0x3F];
385 *outp++ = base64[(bs->bs_bits >> 12) & 0x3F];
386 *outp++ = base64[(bs->bs_bits >> 6) & 0x3F];
387 *outp++ = base64[bs->bs_bits & 0x3F];
404 *outp++ = base64[(bs->bs_bits >> 2) & 0x3F];
405 *outp++ = base64[(bs->bs_bits << 4) & 0x3F];
408 *outp++ = base64[(bs->bs_bits >> 10) & 0x3F];
409 *outp++ = base64[(bs->bs_bits >> 4) & 0x3F];
410 *outp++ = base64[(b
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/net/
H A DMakefile.inc7 SRCS+= base64.c ethers.c gethnamaddr.c getifaddrs.c \
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dkrb5_locl.h151 #include <krb5/base64.h>
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/system/tkey/
H A Dkeydelete.c28 #include <isc/base64.h>
H A Dkeycreate.c28 #include <isc/base64.h>
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/export/samples/
H A Dsample-request.c36 #include <isc/base64.h>
H A Dsample.c36 #include <isc/base64.h>
143 fprintf(stderr, "base64 decode failed\n");
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/irs/
H A Ddnsconf.c27 #include <isc/base64.h>
/netbsd-6-1-5-RELEASE/external/bsd/wpa/bin/hostapd/
H A DMakefile50 base64.c \
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isc/win32/
H A Dlibisc.mak122 -@erase "$(INTDIR)\base64.obj"
244 "$(INTDIR)\base64.obj" \
320 -@erase "$(INTDIR)\base64.obj"
321 -@erase "$(INTDIR)\base64.sbr"
513 "$(INTDIR)\base64.sbr" \
601 "$(INTDIR)\base64.obj" \
1171 SOURCE=..\base64.c
1176 "$(INTDIR)\base64.obj" : $(SOURCE) "$(INTDIR)"
1183 "$(INTDIR)\base64.obj" "$(INTDIR)\base64
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/lib/isc/win32/
H A Dlibisc.mak119 -@erase "$(INTDIR)\base64.obj"
239 "$(INTDIR)\base64.obj" \
311 -@erase "$(INTDIR)\base64.obj"
312 -@erase "$(INTDIR)\base64.sbr"
502 "$(INTDIR)\base64.sbr" \
588 "$(INTDIR)\base64.obj" \
1122 SOURCE=..\base64.c
1127 "$(INTDIR)\base64.obj" : $(SOURCE) "$(INTDIR)"
1134 "$(INTDIR)\base64.obj" "$(INTDIR)\base64
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libarchive/dist/libarchive/
H A Darchive_read_support_format_xar.c1946 strcmp(attr->value, "base64") == 0)
2437 static const int base64[256] = { variable
2487 if (base64[b[0]] < 0 || base64[b[1]] < 0)
2489 n = base64[*b++] << 18;
2490 n |= base64[*b++] << 12;
2496 if (base64[*b] < 0)
2498 n |= base64[*b++] << 6;
2504 if (base64[*b] < 0)
2506 n |= base64[*
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/dns/
H A Dgssapi_link.c28 #include <isc/base64.h>
H A Dprivate.c26 #include <isc/base64.h>
H A Ddst_parse.c41 #include <isc/base64.h>
H A Drdata.c27 #include <isc/base64.h>
/netbsd-6-1-5-RELEASE/crypto/external/bsd/netpgp/dist/src/lib/
H A Dreader.c301 /* base64 stuff */
909 PGP_ERROR(errors, PGP_E_R_BAD_FORMAT, "Badly formed base64");
915 "Badly terminated base64 (2)");
924 "Badly terminated base64 (3)");
933 "Badly terminated base64");
939 "Badly terminated base64 (4)");
966 "No newline at base64 end");
972 "No checksum at base64 end");
997 "Bad base64 trailer (2)");
1006 "Bad base64 traile
1034 base64(dearmour_t *dearmour) function
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/kuser/
H A Dkdigest.c42 #include <krb5/base64.h>
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/tests/dst/
H A Dgsstest.c28 #include <isc/base64.h>
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/rndc/
H A Drndc.c50 #include <isccc/base64.h>
594 DO("decode base64 secret", isccc_base64_decode(secretstr, &secret));
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/isccc/
H A Dcc.c50 #include <isccc/base64.h>
71 * The base64 encoding of one of our HMAC-MD5 signatures is
/netbsd-6-1-5-RELEASE/external/bsd/wpa/dist/hostapd/
H A DMakefile688 OBJS += ../src/utils/base64.o
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/kadm5/
H A Dad.c49 #include <krb5/base64.h>
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/bin/named/
H A Dcontrolconf.c26 #include <isc/base64.h>
/netbsd-6-1-5-RELEASE/external/apache2/mDNSResponder/dist/mDNSCore/
H A DDNSDigest.c1221 #pragma mark - base64 -> binary conversion
1262 if (pos == 0) /* A non-base64 character. */

Completed in 461 milliseconds

1234