vote up 1 vote down star

I made a tongue-in-cheek comment to this question about making a hardware RNG.

Does anyone know of any simple plans or can anyone descibe a simple hardware based RNG and the software to drive it?

Go to Radio Shack. Buy a diode, an NTR resistor, a capacitor and serial cable. Cut off the end of the serial cable that does not fit on your computer. Solder the diode and resistor in series between pins DTR and DSR of the cable. Solder the capacitor between DSR and TXD pins. Write a small C program to do the following: Set DTR to 1. Start Timer. Monitor DSR until it goes to 1. Stop Timer. Calculate resistance from elapsed time. Retreive serveral bits from that value to use as part of random number. Repeat until enough bits have accumulated.

flag

50% accept rate

3 Answers

vote up 1 vote down

If you have a Linux box, you already have /dev/random.

link|flag
this is not a bad answer. /dev/random picks random bits from real-world unpredictable sources, like keyboard/network timings. if you have a VIA processor, it uses the included quantum-noise RNG – Javier Jul 28 at 3:43
The only drawback is: if you have no reliable source of entropy that the kernel knows about, then reading on this can easily block. And the worst thing: it usually only blocks under heavy load when you need lots of entropy, so you can easily miss it when testing. – Joachim Sauer Sep 28 at 22:29
vote up 2 vote down

Diode shot-noise is pretty good. Amplify, A/D convert and sample.

link|flag
vote up 1 vote down

Some server motherboards already have hardware random number generators (intel make some). This is not a joke.

link|flag

Your Answer

Get an OpenID
or

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