Lines Matching defs:Digest

1 package Digest::MD5;
16 require Digest::base;
17 push(@ISA, 'Digest::base');
26 Digest::MD5->bootstrap($VERSION);
32 require Digest::Perl::MD5;
34 Digest::Perl::MD5->import(qw(md5 md5_hex md5_base64));
35 push(@ISA, "Digest::Perl::MD5"); # make OO interface work
51 Digest::MD5 - Perl interface to the MD5 Algorithm
56 use Digest::MD5 qw(md5 md5_hex md5_base64);
63 use Digest::MD5;
65 $ctx = Digest::MD5->new;
76 The C<Digest::MD5> module allows you to use the RSA Data Security
77 Inc. MD5 Message Digest algorithm from within Perl programs. The
81 The C<Digest::MD5> module provide a procedural interface for simple
87 The following functions are provided by the C<Digest::MD5> module.
123 The object oriented interface to C<Digest::MD5> is described in this
124 section. After a C<Digest::MD5> object has been created, you will add
132 =item $md5 = Digest::MD5->new
134 The constructor returns a new C<Digest::MD5> object which encapsulate
152 my $md5 = Digest::MD5->new;
193 implementations. See L<Digest> for description of the arguments
202 read-once operation. Once it has been performed, the C<Digest::MD5>
233 use Digest::MD5 qw(md5_hex);
234 print "Digest is ", md5_hex("foobarbaz"), "\n";
238 Digest is 6df23dc03f9b54cc38a0fc1483df6e21
242 use Digest::MD5;
244 $md5 = Digest::MD5->new;
249 print "Digest is $digest\n";
257 use Digest::MD5;
263 $md5 = Digest::MD5->new;
273 use Digest::MD5;
279 print Digest::MD5->new->addfile(*FILE)->hexdigest, " $file\n";
287 use Digest::MD5 qw(md5_hex);
297 use Digest::MD5 qw(md5_hex);
306 L<Digest>,
307 L<Digest::MD2>,
308 L<Digest::SHA1>,
309 L<Digest::HMAC>
336 is identified as the "RSA Data Security, Inc. MD5 Message-Digest
342 Security, Inc. MD5 Message-Digest Algorithm" in all material
364 The C<Digest::MD5> module is written by Gisle Aas <gisle@ActiveState.com>.