up vote 6 down vote favorite
3
share [g+] share [fb]

I am looking for affordable solutions that generate true random numbers.

I have found LavaRnd, which is a cryptographically sound random number generator. Does anybody has experience in this field and/or knows about other solutions?

PS: IMHO the SO question True random number generator did not really cover this


EDIT:

My curiosity is more of academic nature. I don't want to know about PRNGs that are good enough for practical applications. I know they exist and that they will do.

Of course, generating true random numbers will require hardware devices. That's why I tagged this with hardware.

link|improve this question

25% accept rate
Are you only interested in generating these numbers on your computer or do you need them to be generated elsewhere, like a client computer? I think I remember something about generating random numbers based on pixels in a bitmap. – WakeUpScreaming Mar 18 '09 at 15:20
feedback

11 Answers

up vote 2 down vote accepted

For true random numbers, nothing beats particle physics and the good old Geiger Counter. You can get one with a USB interface for around $200.

link|improve this answer
feedback

http://random.org/

link|improve this answer
Yeah, well... that doesn't help with local coding solutions, does it? – Seb Mar 18 '09 at 15:15
Short of attaching an untuned radio to your serial port (and even then it's suspect), there is very little help for local coding solutions. – Evan Mar 18 '09 at 15:19
LavaRnd does exactly that. It uses inputs from unpredictable devices such as overloaded CCDs or distorting analogue amplifiers. – slim Mar 18 '09 at 15:30
feedback

You didn't specify an environment.

From the documentation for Linux's /dev/random

The random number generator gathers environmental noise from device drivers and other sources into an entropy pool. The generator also keeps an estimate of the number of bit of the noise in the entropy pool. From this entropy pool random numbers are created.

So this is a cryptographically secure random source, based on unpredictable input from such things as the arbitrary timings of ethernet packets, keyboard and mouse input, etc.

There's also Bruce Schneier's Yarrow PRNG server. Not truly random, but considered cryptographically secure.

... and also EGD, the Entropy Gathering Daemon. Written in Perl and hence portable across many platforms.

link|improve this answer
I would wager that this is essentially what that LavaRnd program the OP mentioned does -- I don't think LavaRnd adds anything that isn't available in most OSes, except perhaps cross-platform portability. – rmeador Mar 18 '09 at 15:23
The Lava in LavaRnd is a real Lava lamp, the random numbers are computed from images taken with a webcam. Last I heard this wasn't a feature in most OSs. – starblue Mar 18 '09 at 16:18
1  
I see no reference to a Lava lamp on the LavaRnd web site. It says their chaotic source is a CCD in a dark box. – slim Mar 18 '09 at 16:27
The original Lavarand did use photos of a lava lamp. One of Lavarand's developers went on to help create LavaRnd, which got rid of the lava lamp and just used thermal noise from a camera in the dark. – cjm Jul 1 '11 at 9:25
feedback

I've always been a fan of the Quantum Random Bit Generator: http://random.irb.hr/

link|improve this answer
feedback

There is an article in c't 2/2009 on true and pseudo random numbers. Other than LavaRnd also RandCam and VIA's PadLock are discussed.

link|improve this answer
feedback

As ramdom number generators go I have always liked the one made from lego....

link|improve this answer
feedback

I've always wanted to buy either the PCI or USB Quantum Random Number Generator, but I have no idea what they cost, and frankly it might be a lot! They do deliver a staggering 16 Mibit/s and 4 Mibit/s respectively of random numbers, though, usable on both *NIX boxes and Windows. That's more than I'd ever need!

Other than that, how 'bout a book full of 'em? A Million Random Digits with 100,000 Normal Deviates is perhaps the coolest book they sell on Amazon! I've yet to buy it, but it's only a matter of time. Must be very handy to have such a stock of true random numbers on your book shelve!

link|improve this answer
feedback

Your question depends on how you define "true random numbers". There are plenty of people out there who believe in a deterministic world and there is nothing random at all.

link|improve this answer
-1 I think it's pretty clear what he means. – Jesse Rusak Mar 18 '09 at 15:07
I think Mehrdad is correct, in that 'true random' is not possible for a computer, because the computer HAS to have an algorithm that is dependant on something. Even if it is seeded by a random number, and then salted with time, it is still dependent on that. – DevinB Mar 18 '09 at 15:12
I guess the better question is why a pseudo-random algorithm isn't good enough for OP's purposes. Like Mehrdad said, even thinks like LavaRnd might not be "truly random". – Gregg Lind Mar 18 '09 at 15:12
True random numbers are possible with special hardware, e.g. by feeding amplified noise into a counter. – starblue Mar 18 '09 at 15:17
@starblue: Those hardwares generate random numbers by looking at environmental facts like noise or some other stuff, but are those really random? It's under debate in quantum physics. They might produce sufficiently random numbers for some applications, but might be deterministic. – Mehrdad Afshari Mar 18 '09 at 15:20
show 11 more comments
feedback

"True random" generators are based on some form of physical white noise. The thing is, it's randomness is disputable. There are even projects to prove otherwise (although I'm rather skeptic about it)

link|improve this answer
feedback

You could try a nice hot cup of tea.

link|improve this answer
feedback

True random numbers in computing does not exist and never will. Computers are deterministic, in that if you repeat the same experience under the same environment, the same result will be achieved.

What you get with computers are pseudo-random numbers, mostly depending on current circumstances: date, time, other variables like memory being used, network traffic at the moment, etc.

For example, some online poker sites, to guarantee to some extent the randomness of their dealt hands, had to install specific hardware that takes the ambient noise and generates random numbers based on that (not only that, but it's a major factor).

So, to have pseudo-random numbers that approximate to true randomness, you'll need to take outside factors into account.

link|improve this answer
Your first statement is under heavy debate in quantum mechanics. – Mehrdad Afshari Mar 18 '09 at 15:12
Randomness is something you believe exists because you don't know how it happens. As soon as you discover the mechanics behind the scenery, it stops being random. Talk about predicting rainy days, for example. It couldn't be done 1000 years ago and seemed a random event; not anymore. – Seb Mar 18 '09 at 15:18
@Seb: Luckily, computers can do I/O, meaning they have access to randomness in the outside world -- see slim's answer. – j_random_hacker Mar 18 '09 at 15:27
@j_random_hacker: then, you're not talking about randomness in computing, but randomness in outside world. – Seb Mar 18 '09 at 15:30
@Seb: I apologise, your post is actually making the same point I was trying to make in my comment, somehow I got it backwards... :) – j_random_hacker Mar 18 '09 at 15:37
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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