mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-13 08:14:43 +00:00
11 lines
220 B
Nim
11 lines
220 B
Nim
# Request utils.
|
|
|
|
{.push raises: [].}
|
|
|
|
import bearssl/rand, stew/byteutils
|
|
|
|
proc generateRequestId*(rng: ref HmacDrbgContext): string =
|
|
var bytes: array[10, byte]
|
|
hmacDrbgGenerate(rng[], bytes)
|
|
return toHex(bytes)
|