This is actually not as simple as I first thought.

In the absence of a hardware RNG, what is the best way to seed a Mersenne Twister?

Or should I say, what is an acceptable way to seed a a Mersenne Twister RNG that is used to generate UUID's?

link|improve this question

2  
There is a nice discussion of pseudo-random number generators here including a section on proper seed of PRNGs (see rule 3), which uses md5sum and /dev/random to generate seeds. (This also includes a number of PRNG alogrithms which are a lot easier to code up than the MT but are arguably just as good). – Chris Dec 7 '11 at 23:31
@Chris do you want to post that as an answer? I think it's a very good article and is helpful for seeding PRNG in general. – Matt H Dec 11 '11 at 21:28
@MattH Added my comment as an answer and elaborated a bit. Thanks for the suggestion. – Chris Dec 12 '11 at 10:42
feedback

1 Answer

up vote 1 down vote accepted

There is a nice discussion of pseudo-random number generators here including a section on the proper seeding of PRNGs (see rule 3), which uses md5sum and /dev/random or /dev/urandom to generate seeds.

This also includes a number of PRNG alogrithms which are a lot easier to code up (< 10 lines of code) than the MT but are arguably just as good (long periods and pass all of the Dieharder tests for randomness).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.