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

/bind-9.6-ESV-R11/lib/isc/
H A Dbase64.c24 #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[((source->base[1]<<2)&0x3c)];
90 buf[0] = base64[(sourc
[all...]

Completed in 9 milliseconds