1Digest::SHA::PurePerl version 5.96
2==================================
3
4Digest::SHA::PurePerl is a complete implementation of the NIST
5Secure Hash Standard.  It gives Perl programmers a convenient way
6to calculate SHA-1, SHA-224, SHA-256, SHA-384, SHA-512, SHA-512/224,
7and SHA-512/256 message digests.  The module can handle all types of
8input, including partial-byte data.
9
10Digest::SHA::PurePerl is written entirely in Perl.  If your platform
11has a C compiler, you should install the functionally-equivalent
12(but much faster) Digest::SHA module.
13
14The tests subdirectory (t/*.t) contains an extensive set of SHA
15vectors compiled from various sources.
16
17INSTALLATION
18
19To install this module type the following:
20
21	perl Makefile.PL
22	make
23	make test
24	make install
25
26DEPENDENCIES
27
28	None
29
30COPYRIGHT AND LICENSE
31
32Copyright (C) 2003-2016 Mark Shelor
33
34This library is free software; you can redistribute it and/or modify
35it under the same terms as Perl itself.
36
37Please refer to the Perl Artistic License for details:
38
39http://search.cpan.org/perldoc?perlartistic
40