fermyon / spin-js-sdk

https://developer.fermyon.com/spin/javascript-components
Apache License 2.0
49 stars 17 forks source link

avoid baking the RNG seed into the Wizer output #216

Closed dicej closed 8 months ago

dicej commented 8 months ago

This simply switches from using rand::thread_rng to rand::rngs::OsRng, directing all RNG requests straight to the host. More efficient options are possible, but I'm keeping things simple for now.

Fixes #215