mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 17:35:45 +00:00
9 lines
191 B
Nim
9 lines
191 B
Nim
# Request utils.
|
|
|
|
import bearssl, stew/byteutils
|
|
|
|
proc generateRequestId*(rng: ref BrHmacDrbgContext): string =
|
|
var bytes: array[10, byte]
|
|
brHmacDrbgGenerate(rng[], bytes)
|
|
toHex(bytes)
|