While looking for best attempts at generating truly random numbers, I stumbled upon this code example.

Looking for opinions on this snippet.

using System;
using System.Security.Cryptography;

private static int NextInt(int min, int max)
{
    RNGCryptoServiceProvider rng = new RNGCryptoServiceProvider();
    byte[] buffer = new byte[4];

    rng.GetBytes(buffer);
    int result = BitConverter.ToInt32(buffer, 0);

    return new Random(result).Next(min, max);
}

Source: http://www.vcskicks.com/code-snippet/rng-int.php

Would this be preferred over using a tick count seed such as:

Random rand = new Random(Environment.TickCount); 
rand.Next(min, max);

Note:

I am not looking for third party random data providers such as Random.org, as such a dependency is not realistic to the application.

link|improve this question

75% accept rate
There are no best practices for 'random numbers'. Only for concrete scenarios requiring Random numbers. – Henk Holterman Feb 3 '11 at 22:47
feedback

3 Answers

up vote 3 down vote accepted

Well, using RNGCryptoServiceProvider gives you an unguessable crypto-strength seed whereas Environment.TickCount is, in theory, predictable.

Another crucial difference would be evident when calling your NextInt method several times in quick succession. Using RNGCryptoServiceProvider will seed the Random object with a different crypto-strength number each time, meaning that it will go on to return a different random number for each call. Using TickCount risks seeding the Random object with the same number each time (if the method is called several times during the same "tick"), meaning that it will go on to return the same (supposedly random) number for each call.

If you genuinely need truly random numbers then you shouldn't be using a computer to generate them at all: you should be measuring radioactive decay or something similarly, genuinely unpredictable.

link|improve this answer
It's not the seed that's so vulnerable, but having a few pseudo-random values that makes it feasible to 'guess' the next. – Henk Holterman Feb 3 '11 at 23:02
@Henk: True, but in the OP's example each Random instance is single-use so I don't think that's an issue. Seed the RNG with a crypto-strength number; generate a single integer; discard the RNG; repeat as required. It's not an ideal setup but should be reasonably secure. (Of course, if truly crypto-strength numbers are required then the OP should consult a crypto expert.) – LukeH Feb 3 '11 at 23:07
feedback

I asked a similar question 2 years back :) check and see if it helps you. I used that code for generating a secure random number for payment processing.

link|improve this answer
feedback

It really depends on the intended use or requirement of the random number being generated.

The Random class is useful for practical randomization like randomizing the order images display in an image rotator or rolls of a die.
If, on the other hand, you need random numbers requiring a greater amount of security, like to generate a password or payment confirmation key, then using a class such as RNGCryptoServiceProvider or creating your own implementation of the abstract class RandomNumberGenerator that implements a cryptographic algorithm are better alternatives.

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.