MAN page from Old RedHat 6.X Digest-MD5-2.07-1.i386.rpm
MD2
Section: User Contributed Perl Documentation (3)
Updated: perl 5.005, patch 03
Index NAME
Digest::MD2 - Perl interface to the MD2 Algorithm
SYNOPSIS
# Functional style use Digest::MD2 qw(md2 md2_hex md2_base64);
$digest = md2($data); $digest = md2_hex($data); $digest = md2_base64($data);
# OO style use Digest::MD2;
$ctx = Digest::MD2->new;
$ctx->add($data); $ctx->addfile(*FILE);
$digest = $ctx->digest; $digest = $ctx->hexdigest; $digest = $ctx->b64digest;
DESCRIPTION
The
Digest::MD2 module allows you to use the RSA Data SecurityInc. MD2 Message Digest algorithm from within Perl programs. Thealgorithm takes as input a message of arbitrary length and produces asoutput a 128-bit ``fingerprint'' or ``message digest'' of the input.
The Digest::MD2 programming interface is identical to the interfaceof Digest::MD5.
SEE ALSO
the
Digest::MD5 manpage
COPYRIGHT
This library is free software; you can redistribute it and/ormodify it under the same terms as Perl itself.
Copyright 1998 Gisle Aas. Copyright 1990-1992 RSA Data Security, Inc.
AUTHOR
Gisle Aas <gisleAATTaas.no>
Index
- NAME
- SYNOPSIS
- DESCRIPTION
- SEE ALSO
- COPYRIGHT
- AUTHOR
This document was created byman2html,using the manual pages.