Instead of requiring 128 bits of seed, require just 64, and use them to create a 128-bit seed internally (can use oorandom::Rand32 for that - it has a 64-bit seed). Also, because there will be just the one seed in the function signature, make that seed have native endiannes.
Instead of requiring 128 bits of seed, require just 64, and use them to create a 128-bit seed internally (can use
oorandom::Rand32
for that - it has a 64-bit seed). Also, because there will be just the one seed in the function signature, make that seed have native endiannes.