Home
last modified time | relevance | path

Searched refs:hexdig (Results 1 – 2 of 2) sorted by relevance

/openssl/include/internal/
H A Dto_hex.h14 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() local
25 return to_hex(buf, n, hexdig); in ossl_to_lowerhex()
/openssl/crypto/
H A Do_str.c431 static const char hexdig[] = "0123456789ABCDEF"; in ossl_to_hex() local
433 return to_hex(buf, n, hexdig); in ossl_to_hex()

Completed in 5 milliseconds