Searched defs:base64 (Results 1 - 2 of 2) sorted by relevance

/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);
/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...]

Completed in 8 milliseconds