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

..03-May-2022-

examples/H20-Apr-2018-6315

lib/Digest/H20-Apr-2018-821201

src/H20-Apr-2018-948730

t/H20-Apr-2018-1,120911

ChangesH A D20-Apr-201825.6 KiB676583

MANIFESTH A D25-Dec-2017448 4140

META.ymlH A D20-Apr-2018362 1817

Makefile.PLH A D03-May-20222 KiB9068

READMEH A D20-Apr-20181.1 KiB4428

SHA.xsH A D24-Feb-20188.1 KiB407379

shasumH A D20-Apr-20189.7 KiB338236

typemapH A D25-Dec-201775 86

README

1Digest::SHA version 6.02
2========================
3
4Digest::SHA is a complete implementation of the NIST Secure Hash
5Standard.  It gives Perl programmers a convenient way to calculate
6SHA-1, SHA-224, SHA-256, SHA-384, SHA-512, SHA-512/224, and SHA-512/256
7message digests.  The module can handle all types of input, including
8partial-byte data.
9
10Digest::SHA is written in C for speed.  If your platform lacks a
11C compiler, you can install the functionally-equivalent (but much
12slower) Digest::SHA::PurePerl 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 [ options ]
22	make
23	make test
24	make install
25
26The Makefile.PL options are:
27
28	-x : exclude support for SHA-384/512
29
30DEPENDENCIES
31
32	None
33
34COPYRIGHT AND LICENSE
35
36Copyright (C) 2003-2018 Mark Shelor
37
38This library is free software; you can redistribute it and/or modify
39it under the same terms as Perl itself.
40
41Please refer to the Perl Artistic License for details:
42
43http://search.cpan.org/perldoc?perlartistic
44