• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H28-Jul-2016-6315

lib/Digest/SHA/H28-Jul-2016-1,598859

t/H28-Jul-2016-1,4741,191

ChangesH A D28-Jul-201612.8 KiB359295

MANIFESTH A D10-Jan-2015382 3433

META.ymlH A D28-Jul-2016410 1918

Makefile.PLH A D03-May-20221 KiB5443

READMEH A D28-Jul-20161 KiB4026

shasumH A D28-Jul-20169.1 KiB332219

README

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