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()
77 static const char hextable[] = "0123456789abcdef"; variable103 *(p++) = hextable[v >> 4]; in BN_bn2hex()104 *(p++) = hextable[v & 0x0f]; in BN_bn2hex()356 if (BIO_write(bp, &hextable[v], 1) != 1) { in BN_print()
327 static const char hextable[] = "0123456789abcdef"; in cbb_add_hex() local335 *(out++) = (uint8_t)hextable[in[i] >> 4]; in cbb_add_hex()336 *(out++) = (uint8_t)hextable[in[i] & 0xf]; in cbb_add_hex()