I ported an implementation of a fast-key-erasure RNG suggested by djb to Rust: https://github.com/vks/aesrng
It is about two times faster than non-SIMD xoroshiro when generating 100 MiB of random data. Only fill_bytes is implemented for now.
Once stdsimd is stabilized, this might be of interest for Rand.
I ported an implementation of a fast-key-erasure RNG suggested by djb to Rust: https://github.com/vks/aesrng
It is about two times faster than non-SIMD xoroshiro when generating 100 MiB of random data. Only
fill_bytesis implemented for now.Once
stdsimdis stabilized, this might be of interest for Rand.