Home
last modified time | relevance | path

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

/external/boringssl/src/tool/
Drand.cc64 uint8_t hex_buf[8192]; in Rand() local
76 hex_buf[i*2] = hextable[buf[i] >> 4]; in Rand()
77 hex_buf[i*2 + 1] = hextable[buf[i] & 0xf]; in Rand()
79 if (fwrite(hex_buf, todo*2, 1, stdout) != 1) { in Rand()