Rust pseudo random crate guranteeing same sequence for a given seed?

Is there a rust crate for generating pseudo random numbers, which guarantees, for a fixed seed, it always generates the same sequence, regardless of the arch? (i.e. same output on wasm32 and x86_64) ?

Context: playing with sending a seed rather than a bunch of random data

I only followed links, but does rand_chacha suit your needs? (Recommended in the rand docs.)

1 Like

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.