vote up 3 vote down star

Is there a Windows equivalent of Linux's /dev/random?

flag

3 Answers

vote up 2 vote down check

Yes, it's called CryptoAPI.

link|flag
vote up 0 vote down

If you're doing .NET development you can use the RandomNumberGenerator class.

link|flag
vote up 0 vote down

Kind of... Look in here for some details. http://en.wikipedia.org/wiki/CryptGenRandom#Using_RtlGenRandom You are going to be better off using the programming languages random generator functions.

EDIT - Can I ask what is the goal you are trying to achieve?

link|flag
−1. /dev/random is a cryptographically secure RNG. Advising people to blindly use the programming-language-supplied PRNG is a terribly bad idea. – Johannes Rössel Sep 29 at 20:12
So I give a crypto friendly answer, and advice to look into the PL's rand functions to see if there is an equivalent (would you blindly trust one MS has supplied?) and thats bad? – StingyJack Sep 30 at 12:13

Your Answer

Get an OpenID
or

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