Searched refs:hexdig (Results 1 – 3 of 3) sorted by relevance
262 static char hexdig(unsigned char x) { in hexdig() function301 ret[pos] = hexdig(hash[i] >> 4); in sign_key_md5_fingerprint()302 ret[pos+1] = hexdig(hash[i] & 0x0f); in sign_key_md5_fingerprint()335 ret[pos] = hexdig(hash[i] >> 4); in sign_key_sha1_fingerprint()336 ret[pos+1] = hexdig(hash[i] & 0x0f); in sign_key_sha1_fingerprint()
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()
368 const static char hexdig[] = "0123456789ABCDEF"; in hex_to_string() local376 *q++ = hexdig[(*p >> 4) & 0xf]; in hex_to_string()377 *q++ = hexdig[*p & 0xf]; in hex_to_string()