vote up 6 vote down star
2

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.

flag

33% 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 at 15:20

11 Answers

vote up 2 vote down check

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|flag
vote up 0 vote down

You could try a nice hot cup of tea.

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

"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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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

link|flag
vote up 4 vote down

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|flag
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 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 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 at 16:27
vote up 0 vote down

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|flag
Your first statement is under heavy debate in quantum mechanics. – Mehrdad Afshari Mar 18 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 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 at 15:27
@j_random_hacker: then, you're not talking about randomness in computing, but randomness in outside world. – Seb Mar 18 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 at 15:37
show 2 more comments
vote up 6 vote down

http://random.org/

link|flag
Yeah, well... that doesn't help with local coding solutions, does it? – Seb Mar 18 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 at 15:19
LavaRnd does exactly that. It uses inputs from unpredictable devices such as overloaded CCDs or distorting analogue amplifiers. – slim Mar 18 at 15:30
vote up 1 vote down

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|flag
-1 I think it's pretty clear what he means. – Jesse Rusak Mar 18 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 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 at 15:12
True random numbers are possible with special hardware, e.g. by feeding amplified noise into a counter. – starblue Mar 18 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 at 15:20
show 11 more comments

Your Answer

Get an OpenID
or

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