Digest::MD2 - Perl interface to the MD2 Algorithm


Digest-MD2 documentation Contained in the Digest-MD2 distribution.

Index


Code Index:

NAME

Top

Digest::MD2 - Perl interface to the MD2 Algorithm

SYNOPSIS

Top

 # 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

Top

The Digest::MD2 module allows you to use the RSA Data Security Inc. MD2 Message Digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input.

The Digest::MD2 programming interface is identical to the interface of Digest::MD5.

SEE ALSO

Top

Digest::MD5

COPYRIGHT

Top

AUTHOR

Top

Gisle Aas <gisle@aas.no>


Digest-MD2 documentation Contained in the Digest-MD2 distribution.

package Digest::MD2;

use strict;
use vars qw($VERSION @ISA @EXPORT_OK);

$VERSION = '2.03';  # $Date: 2003/07/23 06:33:38 $

require Exporter;
*import = \&Exporter::import;
@EXPORT_OK = qw(md2 md2_hex md2_base64);

require DynaLoader;
@ISA=qw(DynaLoader);
Digest::MD2->bootstrap($VERSION);

*reset = \&new;

1;
__END__