Home | History | Annotate | Download | only in compat

Lines Matching defs:Base64

58 static const char Base64[] =
75 of which is translated into a single digit in the base64 alphabet.
81 Table 1: The Base64 Alphabet
109 Since all base64 input is an integral number of octets, only the
149 target[datalength++] = Base64[output[0]];
150 target[datalength++] = Base64[output[1]];
151 target[datalength++] = Base64[output[2]];
152 target[datalength++] = Base64[output[3]];
171 target[datalength++] = Base64[output[0]];
172 target[datalength++] = Base64[output[1]];
176 target[datalength++] = Base64[output[2]];