in reply to Re^2: Crypt::Random::ISAAC - secure random number generator
in thread Crypt::Random::ISAAC - secure random number generator
To generate a nice seed where you don't have /dev/random, you can do a checksum on your environment. Here are some sources of bits that are not random, but hard to reproduce:
/dev/random collects entropy from drivers, timers, and so forth, so essentially you're doing a cheap emulation of that.
If you get something nice, make a module out of it: Entropy::Gather::Win32 or something.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Crypt::Random::ISAAC - secure random number generator
by radiantmatrix (Parson) on Jul 11, 2005 at 18:38 UTC | |
by nothingmuch (Priest) on Jul 11, 2005 at 23:09 UTC |