Home
last modified time | relevance | path

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

/src/lib/libcrypt/
H A Dcrypt-nthash.c53 static const char hexconvtab[] = "0123456789abcdef"; in crypt_nthash() local
74 *buffer++ = hexconvtab[hash[i] >> 4]; in crypt_nthash()
75 *buffer++ = hexconvtab[hash[i] & 15]; in crypt_nthash()