show/hide this revision's text 3 Reorganize for clarity. Fix grammar.

Hardware-based, true (modulo any problems with our understanding of physics) [1], random number generators are possible, but non-trivial and often have low mean rates. Availablity can also be an issue (because you're waiting for a random process). [2]. Googling for "shot noise" or "radioactive decay" in combination with "random number generator" should return some hits.

These systems do not need to maintain state. Probably not what you were looking for.

As noted by others, software systems are only pseudo-random, and must maintain state.

A compromise is to use a hardware based RNG to provide a an entropy pool (stored state) which is made available to seed a PRNG. This is done quite explicitly in the linux implementation of /dev/random ([3] and /dev/urandom [4].

These is some argument about just how random the default inputs to the /dev/random entropy pool really are.


Footnotes:

  1. modulo any problems with our understanding of physics
  2. because you're waiting for a random process
  3. /dev/random features direct access to the entropy pool seeded from various sources believed to be really or nearly random, and blocks when the entropy is exhausted) and
  4. /dev/urandom (is like /dev/random, but does not block and instead uses when the entopy is exhausted a cryptographic hash is employed which makes the entropy pool effectively a stateful PRNG).

    These is some argument about just how random the default inputs to the /dev/random entropy pool really are. PRNG

show/hide this revision's text 2 Expand and expound

Hardware-based, true (modulo any problems with our understanding of physics) random number generators are possible, but non-trivial and often have low mean rates. Availablity can also be an issue (because you're waiting for a random process). Googling for "shot noise" or "radioactive decay" in combination with "random number generator" should return some hits.

These systems do not need to maintain state. Probably not what you were looking for.

As noted by others, software systems are only pseudo-random, and must maintain state.

A compromise is to use a hardware based RNG to provide a entropy pool (stored state) which is made available to seed a PRNG. This is done quite explicitly in the linux implementation of /dev/random (direct access to the entropy pool seeded from various sources believed to be really or nearly random, blocks when the entropy is exhausted) and /dev/urandom (like /dev/random, but does not block and instead uses a cryptographic hash which makes the entropy pool effectively a stateful PRNG).

These is some argument about just how random the default inputs to the /dev/random entropy pool really are.

show/hide this revision's text 1

Hardware-based, true (modulo any problems with our understanding of physics) random number generators are possible, but non-trivial and often have low mean rates. Availablity can also be an issue (because you're waiting for a random process). Googling for "shot noise" or "radioactive decay" in combination with "random number generator" should return some hits.

These systems do not need to maintain state. Probably not what you were looking for.

As noted by others, software systems are only pseudo-random, and must maintain state.