Searched refs:b64t (Results 1 – 2 of 2) sorted by relevance
351 static const char b64t[] = local357 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)]);
86 static const char *b64t = variable289 if (*p++ != b64t[w & 0x3f]) in md5_password()294 *p++ = b64t[w & 0x3f]; in md5_password()306 if (*p++ != b64t[w & 0x3f]) in md5_password()311 *p++ = b64t[w & 0x3f]; in md5_password()