I have a pseudorandom number generator (PRNG) with nice properties which uses six UInt32
s as state. I need to come up with a reasonable way to seed it. Two obvious possibilities are: 1) generate six random numbers using System.Random
and use them as seeds; 2) generate two GUID
s with Guid.NewGuid()
. Which would be better?
I do not need cryptographic security.