-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
47 lines (28 loc) · 1.08 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Crypt::Random::Seed version 0.03
========================
Crypt::Random::Seed provides a simple interface to get the strongest source
of randomness on the current platform, typically for use in seeding a CSPRNG
such as Math::Random::ISAAC. It can also be restricted to non-blocking
sources, and has a very simple plug-in method.
The following sources are tried, in order:
Win32 Crypto API
EGD
/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.
Crypt::Random::TESHA2, only used if /dev/random or Win32 API doesn't work.
SEE ALSO
Crypt::URandom provides similar functionality for non-blocking sources.
For more complex setups, Crypt::Random::Source has multiple plugins.
COPYRIGHT AND LICENCE
Copyright (C) 2013 by Dana Jacobsen <[email protected]>
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.