Searched refs:hexdig (Results 1 – 2 of 2) sorted by relevance
14 static ossl_inline size_t to_hex(char *buf, uint8_t n, const char hexdig[17]) in to_hex()16 *buf++ = hexdig[(n >> 4) & 0xf]; in to_hex()17 *buf = hexdig[n & 0xf]; in to_hex()23 static const char hexdig[] = "0123456789abcdef"; in ossl_to_lowerhex() local25 return to_hex(buf, n, hexdig); in ossl_to_lowerhex()
431 static const char hexdig[] = "0123456789ABCDEF"; in ossl_to_hex() local433 return to_hex(buf, n, hexdig); in ossl_to_hex()
Completed in 5 milliseconds