mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-16 01:45:40 +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)
|