Home
last modified time | relevance | path

Searched refs:b64t (Results 1 – 3 of 3) sorted by relevance

/external/ipsec-tools/src/racoon/
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[((p[0] << 4) & 0x30)]);
/external/syslinux/com32/libutil/
Dsha256crypt.c288 static const char b64t[64] = variable
478 *cp++ = b64t[w & 0x3f]; \ in sha256_crypt_r()
Dsha512crypt.c323 static const char b64t[64] = variable
513 *cp++ = b64t[w & 0x3f]; \ in sha512_crypt_r()