Searched refs:hextable (Results 1 – 4 of 4) sorted by relevance
75 static const char hextable[16 + 1] = "0123456789abcdef"; in Rand() local77 hex_buf[i*2] = hextable[buf[i] >> 4]; in Rand()78 hex_buf[i*2 + 1] = hextable[buf[i] & 0xf]; in Rand()
75 static const char hextable[] = "0123456789abcdef"; in hexbyte() local76 out[0] = hextable[b>>4]; in hexbyte()77 out[1] = hextable[b&0x0f]; in hexbyte()
254 static const char hextable[] = "0123456789abcdef"; variable279 *(p++) = hextable[v >> 4]; in BN_bn2hex()280 *(p++) = hextable[v & 0x0f]; in BN_bn2hex()532 if (BIO_write(bp, &hextable[v], 1) != 1) { in BN_print()
2238 static const char hextable[] = "0123456789abcdef"; in cbb_add_hex() local2246 *(out++) = (uint8_t)hextable[in[i] >> 4]; in cbb_add_hex()2247 *(out++) = (uint8_t)hextable[in[i] & 0xf]; in cbb_add_hex()