Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the pros and cons of using System.Security.Cryptography.RNGCryptoServiceProvider vs System.Random. I know that RNGCryptoServiceProvider is 'more random', i.e. less predictable for hackers. Any other pros or cons?


UPDATE:

According to the responses, here are the pros and cons of using RNGCryptoServiceProvider so far:

Pros

  • RNGCryptoServiceProvider is a stronger cryptographically random number, meaning it would be better for determining encryption keys and the likes.

Cons

  • Random is faster because it is a simpler calculation; when used in simulations or long calculations where cryptographic randomness isn't important, this should be used.
share|improve this question

3 Answers

up vote 21 down vote accepted

A cryptographically strong RNG will be slower --- it takes more computation --- and will be spectrally white, but won't be as well suited to simulations or Monte Carlo methods, both because they do take more time, and because they may not be repeatable, which is nice for testing.

In general, you want to use a cryptographic PRNG when you want a unique number like a UUID, or as a key for encryption, and a deterministic PRNG for speed and in simulation.

share|improve this answer
e.g. Blum Blum Shub vs Mersenne Twister. BBS is created with a strong cryptographical proof in mind, and to get anywhere near random for a non-crypto purpose, it's way too slow and resource intensive. – Calyth Jan 7 '09 at 1:17
Re testing, you can always use Random while testing and change the implementation to use RNGCryptoServiceProvider in production, can't you? – configurator Jan 8 '09 at 1:26
You can, but a strong PRNG still won't be as suitable for some purposes like Monte Carlo; repeatability and speed are desirable in production use too. – Charlie Martin Jan 8 '09 at 3:55

System.Random is not thread safe.

share|improve this answer
Good point. You can see blogs.msdn.com/pfxteam/archive/2009/02/19/9434171.aspx for further discussion. – configurator Feb 3 '10 at 1:51
2  
Now that I think about it, RNGCryptoServiceProvider isn't either! – configurator Feb 3 '10 at 1:52
7  
MSDN seems to say that RNGCryptoServiceProvider is thread safe (msdn.microsoft.com/en-us/library/…). – Scott A. Lawrence Jun 17 '10 at 19:55
What's the worse that can happen? You get some random result, right? JK ... – Sid Mar 12 at 16:59
Joking aside, it can corrupt itself and return zeroes (stackoverflow.com/a/11109361/155892). (dilbert.com/strips/comic/2001-10-25) – Mark Sowul May 8 at 15:09

Yes, there is only one more. As Charlie Martin wrote System.Random is faster.

I would like to add the following info:

The RNGCryptoServiceProvider is the default implementation of a security standards compliant random number generator. If you need a random variable for security purposes, you must use this class, or an equivalent, but don't use System.Random because it is highly predictable.

For all other uses the higher performance of System.Random, and equivalent classes, are welcome.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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