The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Crypt::Random::Seed version 0.01
========================

Crypt::Random::Seed provides a simple interface to get the strongest source
of randomness on the current platform.  This may take a very long time.  This
is intended to provide a seed for a good random number generator, such as
Math::Random::ISAAC, or for use when generating cryptographic keys.

For non-blocking source, I recommend Crypt::URandom.

For more complex setups, Crypt::Random::Source has multiple plugins.

The following sources are tried, in order:
  Win32 Crypto API
  /dev/random
  Crypt::Random::TESHA2


INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install


DEPENDENCIES

Win32::API on Windows, FileHandle on non-Windows

Crypt::Random::TESHA2, only used if /dev/random or Win32 API doesn't work.


COPYRIGHT AND LICENCE

Copyright (C) 2013 by Dana Jacobsen <dana@acm.org>

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.16.2 or,
at your option, any later version of Perl 5 you may have available.