Searched refs:hexdig (Results 1 – 4 of 4) sorted by relevance
228 static const char hexdig[] = "0123456789ABCDEF"; in do_hex_dump() local235 hextmp[0] = hexdig[*p >> 4]; in do_hex_dump()236 hextmp[1] = hexdig[*p & 0xf]; in do_hex_dump()
1503 static unsigned char hexdig[256]; variable1525 htinit(hexdig, USC "0123456789", 0x10); in hexdig_init()1526 htinit(hexdig, USC "abcdef", 0x10 + 10); in hexdig_init()1527 htinit(hexdig, USC "ABCDEF", 0x10 + 10); in hexdig_init()1575 if (!hexdig['0'])1587 c1 = hexdig[c];1796 if (!hexdig['0'])1807 if (hexdig[*s])1822 if (!hexdig[*s])1826 if (hexdig[*s])[all …]
381 static const char hexdig[] = "0123456789ABCDEF"; in hex_to_string() local389 *q++ = hexdig[(*p >> 4) & 0xf]; in hex_to_string()390 *q++ = hexdig[*p & 0xf]; in hex_to_string()
142 hexdig, base64 = k.compute_md5(sfp)143 bad_md5 = (hexdig, base64[3:])