• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..11-Apr-2013244

ChangesH A D28-Nov-200714.7 KiB

examples/H11-Apr-20133

Makefile.PLH A D28-Nov-2007872

MANIFESTH A D28-Nov-2007478

META.ymlH A D28-Nov-2007267

READMEH A D28-Nov-20071.1 KiB

SHA.pmH A D28-Nov-200717.4 KiB

SHA.xsH A D28-Nov-20073.8 KiB

shasumH A D28-Nov-20077.4 KiB

src/H11-Apr-201310

t/H11-Apr-201323

typemapH A D28-Nov-200741

README

1Digest::SHA version 5.45
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, and SHA-512 message digests.
7The module can handle all types of input, including partial-byte
8data.
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	-t : build a thread-safe version of module
29	-x : exclude support for SHA-384/512
30
31DEPENDENCIES
32
33	None
34
35COPYRIGHT AND LICENSE
36
37Copyright (C) 2003-2007 Mark Shelor
38
39This library is free software; you can redistribute it and/or modify
40it under the same terms as Perl itself.
41
42Please refer to the Perl Artistic License for details:
43
44http://search.cpan.org/perldoc?perlartistic
45