We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related openethereum/wordlist#2
There is no Buffer nor Uint8Array available, so we need something that works in pure JS and has good enough entropy.
Buffer
Uint8Array
The text was updated successfully, but these errors were encountered:
so, what about #37? does it work?
Sorry, something went wrong.
Yes, it works but falls back to: https://github.com/paritytech/wordlist/blob/master/index.js#L60
So it uses Math.random() which is not crypto-secure: http://stackoverflow.com/questions/5651789/is-math-random-cryptographically-secure
Math.random()
so I think, we should generate random words / numbers on rust side
fixed #36, proper random source
241297f
0418c48
No branches or pull requests
Related openethereum/wordlist#2
There is no
Buffer
norUint8Array
available, so we need something that works in pure JS and has good enough entropy.The text was updated successfully, but these errors were encountered: