You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2025. It is now read-only.
Is it safe to use /dev/urandom in random_secrect_exponent? It provides much more data than /dev/random. The problem is I need to generate 50 wallets at one time and /dev/random is too slow for that.
I can make pull request that adds new option to BitcoinPrivateKey constructor to allow to use /dev/urandom instead of default /dev/random.
Is it safe to use /dev/urandom in
random_secrect_exponent? It provides much more data than /dev/random. The problem is I need to generate 50 wallets at one time and /dev/random is too slow for that.I can make pull request that adds new option to
BitcoinPrivateKeyconstructor to allow to use /dev/urandom instead of default /dev/random.