Searched refs:hextab (Results 1 – 5 of 5) sorted by relevance
65 static const char hextab[] = "0123456789ABCDEF"; variable101 buf[1] = hextab[(*p >> 4) & 0xf]; in encode_bytes()102 buf[2] = hextab[*p & 0xf]; in encode_bytes()232 find1 = strchr(hextab, inbuf[1]); in decode_bytes()233 find2 = strchr(hextab, inbuf[2]); in decode_bytes()236 c = (char)(((find1 - hextab) << 4) | (find2 - hextab)); in decode_bytes()
224 const static char hextab[] = "0123456789ABCDEF"; in make_srec() local300 *p++ = hextab[k >> 4]; in make_srec()301 *p++ = hextab[k & 0xf]; in make_srec()307 *p++ = hextab[checksum >> 4]; in make_srec()308 *p++ = hextab[checksum & 0xf]; in make_srec()
263 static char hextab[] = "0123456789abcdef"; in smtp_auth_md5() local288 ascii_digest[2*i] = hextab[digest[i] >> 4]; in smtp_auth_md5()289 ascii_digest[2*i+1] = hextab[digest[i] & 15]; in smtp_auth_md5()
216 static char hextab[17] = "0123456789ABCDEF"; variable233 out[op++] = hextab[(buf[l] & 0xf0) >> 4]; in pk_encode()234 out[op++] = hextab[(buf[l] & 0x0f)]; in pk_encode()
1152 static char hextab[] = { local1157 return (hextab[c & 0x0f]);