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
When underlying system entropy source is not good enough, it is common practice to add/mix it with your own entropy source.
The C library provides API (also cf associated doc) for this purpose but the current Rust wrapper does not.
Is it possible to add Rust bindings to to RAND_add() and RAND_seed() ?
The text was updated successfully, but these errors were encountered:
It looks like these function do internal locking, which means that it's plausible we could implement them safely. I will warn you that it's unlikely anyone else will add these functions, if you want them then you'll probably have to write the PR yourself.
When underlying system entropy source is not good enough, it is common practice to add/mix it with your own entropy source.
The C library provides API (also cf associated doc) for this purpose but the current Rust wrapper does not.
Is it possible to add Rust bindings to to
RAND_add()
andRAND_seed()
?The text was updated successfully, but these errors were encountered: