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

12

/bind-9.11.3/lib/isc/
H A Dbase64.c9 /* $Id: base64.c,v 1.34 2009/10/21 23:48:05 tbox Exp $ */
15 #include <isc/base64.h>
39 static const char base64[] = variable
55 buf[0] = base64[(source->base[0]>>2)&0x3f];
56 buf[1] = base64[((source->base[0]<<4)&0x30)|
58 buf[2] = base64[((source->base[1]<<2)&0x3c)|
60 buf[3] = base64[source->base[2]&0x3f];
73 buf[0] = base64[(source->base[0]>>2)&0x3f];
74 buf[1] = base64[((source->base[0]<<4)&0x30)|
76 buf[2] = base64[((sourc
[all...]
/bind-9.11.3/lib/isccc/
H A Dbase64.c23 /* $Id: base64.c,v 1.8 2007/08/28 07:20:43 tbox Exp $ */
29 #include <isc/base64.h>
34 #include <isccc/base64.h>
H A Dcc.c41 #include <isccc/base64.h>
63 * The base64 encoding of one of our HMAC-MD5 signatures is
84 * The base64 encoding of one of our HMAC-SHA* signatures is
/bind-9.11.3/bin/tools/
H A Disc-hmac-fixup.c13 #include <isc/base64.h>
33 char base64[(1024*4)/3]; local
131 isc_buffer_init(&buf, base64, sizeof(base64));
137 fprintf(stdout, "%.*s\n", (int)isc_buffer_usedlength(&buf), base64);
H A Dmdig.c16 #include <isc/base64.h>
767 " +[no]split=## (Split hex/base64 fields into chunks)\n"
/bind-9.11.3/contrib/dane/
H A Dmkdane.sh115 | openssl base64 -d
/bind-9.11.3/bin/confgen/
H A Dddns-confgen.c23 #include <isc/base64.h>
H A Dkeygen.c18 #include <isc/base64.h>
H A Drndc-confgen.c28 #include <isc/base64.h>
/bind-9.11.3/bin/named/
H A Dtsigconf.c15 #include <isc/base64.h>
H A Dcontrolconf.c13 #include <isc/base64.h>
/bind-9.11.3/lib/irs/
H A Ddnsconf.c17 #include <isc/base64.h>
/bind-9.11.3/lib/samples/
H A Dsample-request.c29 #include <isc/base64.h>
H A Dresolve.c27 #include <isc/base64.h>
143 fprintf(stderr, "base64 decode failed\n");
/bind-9.11.3/bin/tests/system/tkey/
H A Dkeydelete.c17 #include <isc/base64.h>
H A Dkeycreate.c17 #include <isc/base64.h>
/bind-9.11.3/lib/dns/
H A Dprivate.c11 #include <isc/base64.h>
H A Dgssapi_link.c17 #include <isc/base64.h>
H A Ddst_parse.c30 #include <isc/base64.h>
/bind-9.11.3/bin/tests/system/pipelined/
H A Dpipequeries.c16 #include <isc/base64.h>
/bind-9.11.3/lib/dns/tests/
H A Dkeytable_test.c20 #include <isc/base64.h>
/bind-9.11.3/bin/tests/dst/
H A Dgsstest.c18 #include <isc/base64.h>
/bind-9.11.3/contrib/dnsperf-2.1.0.0-1/
H A Ddns.c43 #include <isc/base64.h>
/bind-9.11.3/bin/rndc/
H A Drndc.c40 #include <isccc/base64.h>
657 DO("decode base64 secret", isccc_base64_decode(secretstr, &secret));
/bind-9.11.3/bin/delv/
H A Ddelv.c30 #include <isc/base64.h>
182 " +[no]split=## (Split hex/base64 fields into chunks)\n"

Completed in 102 milliseconds

12