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
rand::ThreadRng
At compile time, Rng selects one of:
Rng
trng
std
getrandom
extern "C" fn crypto_getrandom(...)
I'm not exactly a fan of user space CSPRNGs. The ChaCha8 trng CSPRNG is unavoidable, but ThreadRng isn't. We should probably get rid of it.
The text was updated successfully, but these errors were encountered:
crypto: get rid of ThreadRng
99fea54
Fixes #43 Signed-off-by: Eric Lagergren <[email protected]>
crypto: get rid of rand::ThreadRng
68eb595
elagergren-spideroak
Successfully merging a pull request may close this issue.
At compile time,
Rng
selects one of:trng
is enabled, orstd
is enabled, orgetrandom
is enabled, orextern "C" fn crypto_getrandom(...)
otherwiseI'm not exactly a fan of user space CSPRNGs. The ChaCha8
trng
CSPRNG is unavoidable, but ThreadRng isn't. We should probably get rid of it.The text was updated successfully, but these errors were encountered: