mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-10 20:36:31 +00:00
11 lines
227 B
Nim
11 lines
227 B
Nim
import eth/keys, config
|
|
|
|
proc getRng*(): ref BrHmacDrbgContext =
|
|
getConfiguration().rng
|
|
|
|
proc randomPrivateKey*(): PrivateKey =
|
|
random(PrivateKey, getRng()[])
|
|
|
|
proc randomKeyPair*(): KeyPair =
|
|
random(KeyPair, getRng()[])
|