vote up 2 vote down star

I have a PRNG with nice properties which uses 6 UInt32s as state. I need to come up with a reasonable way to seed it. Two obvious possibilities are: 1) generate 6 random numbers using System.Random and use them as seeds; 2) generate 2 Guids with Guid.NewGuid(). Which would be better?

I do not need cryptographic security.

flag

4 Answers

vote up 3 vote down check

If it needs UInt32, then Random is more convenient? just Next(), Next(), Next() etc (and cast)... (use the same Random instance however - don't create new Random() each time).

It depends on what the intent is as to whether this offers enough randomness. Since this is just the seed, it should be OK...

link|flag
Wow, that was fast :) It just seems like way too little randomness, intuitively. But probably enough for my purposes. Should not get hung up on things like this. – Alexey Romanov Dec 15 '08 at 20:52
@alexey_r - then attach a radio antenna and use whitenoise to generate the randomness ;-p It has to come from somewhere... – Marc Gravell Dec 15 '08 at 20:54
Well, you won't get "more randomness" if you would generate random number of numbers, or seed it random number of times etc. If you use System.Random it will only as random as that is. And System.Random by defaults uses system tick count. If you don't need high security, this is enough. – lacop Dec 15 '08 at 20:55
I agree with Marc. Using a PRNG to seed another PRNG doesn't make anything any better or worse. – Jon B Dec 15 '08 at 21:01
vote up 3 vote down

Unfortunately System.Random() also requires a seed value. By default it uses the current Tick count which is predictable and not actually random. So you'll need a seed for Random which leads you back to your original question ...

I haven't ever used Guid.GetHashCode() as a seed before but my 2 second reaction is that doesn't sound like a bad idea.

link|flag
Is Guid.GetHashCode() any less predictable than the default seed? – Jon B Dec 15 '08 at 20:59
You'd need a crypto guy to get a definitive answer and I'm not one :) My guess is yes it's less predictable. Time is easily predicted. There are different GUID algorithms out there and if you know a few other pieces of data (hardware ID for instance) it is also predictable but it's a bit harder – JaredPar Dec 15 '08 at 21:10
I tried this actually the other day and it turned out that Guid's GetHashCode was terrible as a seed for System.Random. In fact so bad that within 3 cycles it actually turned out the exact same string of 6 random numbers !!! I was quite surprised but decided not to investigate further. – NathanE Dec 15 '08 at 21:24
@Nathan, how did you verify this? I just generated 10,000 GUIDs on my machine and got 0 dupes. Using powershell 1..10000 |%{[Guid]::NewGuid().GetHashCode() | select -unqiue – JaredPar Dec 15 '08 at 21:43
You will never get a duplicate Guid, but they are predictable and not a very good random seed. – Eric J. Sep 9 at 0:30
show 1 more comment
vote up -1 vote down

The whole system will be only as random, as the least random part of it. You can seed it with some better seed than just current system time (tick count). Few ideas that came to my mind are:

  • Mouse position
  • Number of running processes
  • Time to ping, eg., google.com

Etc, etc ... You can combine several of them together.

But, IMHO, just plain time is good enough if you really don't need very high randomness.

link|flag
I did say "a PRNG with nice properties" above, didn't I? Whatever I choose as the seed for System.Random certainly won't increase its period to 2^191 or make it splittable. – Alexey Romanov Dec 15 '08 at 21:04
Oh, sorry, didn't really understand what you meant by that. But you can use this to improve randomness a little. – lacop Dec 15 '08 at 21:12
lacop haha your a dumass – theman_on_vista Dec 29 at 20:21
vote up 0 vote down

Whether or not you need cryptographic security, why not just use System.Security.Cryptography.RNGCryptoServiceProvider to generate your random numbers? Unless there's a specific reason, like it's too slow, I can't see why you wouldn't use it. Since it is a cryptographic random generator, you'll get much better random numbers, and don't have to be worried about seeding it.

link|flag
Not a bad idea in general, but I need my RNG to be splittable, and RNGCryptoServiceProvider isn't. – Alexey Romanov Dec 15 '08 at 21:39

Your Answer

Get an OpenID
or

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