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

/external/ipsec-tools/src/racoon/
H A Dgetcertsbyname.c351 static const char b64t[] = local
357 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
358 printf("%c", b64t[((p[0] << 4) & 0x30) | ((p[1] >> 4) & 0x0f)]);
359 printf("%c", b64t[((p[1] << 2) & 0x3c) | ((p[2] >> 6) & 0x03)]);
360 printf("%c", b64t[p[2] & 0x3f]);
366 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
367 printf("%c", b64t[((p[0] << 4) & 0x30)| ((p[1] >> 4) & 0x0f)]);
368 printf("%c", b64t[((p[1] << 2) & 0x3c)]);
371 printf("%c", b64t[(p[0] >> 2) & 0x3f]);
372 printf("%c", b64t[((
[all...]

Completed in 86 milliseconds