Home
last modified time | relevance | path

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

/third_party/libwebsockets/lib/core/
Dlibwebsockets.c156 static char *hexch = "0123456789abcdef"; variable
165 *dest++ = hexch[b >> 4]; in lws_hex_from_byte_array()
168 *dest++ = hexch[b & 0xf]; in lws_hex_from_byte_array()
185 *dest++ = hexch[b >> 4]; in lws_hex_random()
186 *dest++ = hexch[b & 0xf]; in lws_hex_random()
191 *dest++ = hexch[(*r) >> 4]; in lws_hex_random()