toposware / frost

A fork of frost-dalek, made WASM compatible, and upgraded to Static ICE-FROST
BSD 3-Clause "New" or "Revised" License
14 stars 2 forks source link

Relax rng types #13

Closed Nashtare closed 2 years ago

Nashtare commented 3 years ago

We currently often have let mut rng = OsRng; in the code, in particular in src/keygen.rs, including in the current PR #12. It would be better to have rng given as parameter, implementing RngCore and CryptoRng (necessary for Scalar::random()) to give more flexibility than just OsRng)