Home
last modified time | relevance | path

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

/freebsd/contrib/dma/
H A Dcrypto.c301 static char hextab[] = "0123456789abcdef"; in smtp_auth_md5() local
326 ascii_digest[2*i] = hextab[digest[i] >> 4]; in smtp_auth_md5()
327 ascii_digest[2*i+1] = hextab[digest[i] & 15]; in smtp_auth_md5()
/freebsd/contrib/telnet/libtelnet/
H A Dpk.c207 static char hextab[17] = "0123456789ABCDEF"; variable
224 out[op++] = hextab[(buf[l] & 0xf0) >> 4]; in pk_encode()
225 out[op++] = hextab[(buf[l] & 0x0f)]; in pk_encode()
/freebsd/sbin/ipf/ipsend/
H A Ddlcommon.c1065 static char hextab[] = { in hexnibble() local
1070 return (hextab[c & 0x0f]); in hexnibble()