Home
last modified time | relevance | path

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

/external/dropbear/
Dsignkey.c262 static char hexdig(unsigned char x) { in hexdig() function
301 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()
/external/openssl/crypto/asn1/
Da_strex.c228 static const char hexdig[] = "0123456789ABCDEF"; in do_hex_dump() local
235 hextmp[0] = hexdig[*p >> 4]; in do_hex_dump()
236 hextmp[1] = hexdig[*p & 0xf]; in do_hex_dump()
/external/openssl/crypto/x509v3/
Dv3_utl.c368 const static char hexdig[] = "0123456789ABCDEF"; in hex_to_string() local
376 *q++ = hexdig[(*p >> 4) & 0xf]; in hex_to_string()
377 *q++ = hexdig[*p & 0xf]; in hex_to_string()