Digest::Perl::MD4

Digest::Perl::MD4 is a Perl implementation of Ron Rivests MD4 Algorithm.
Download

Digest::Perl::MD4 Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Price:
  • FREE
  • Publisher Name:
  • Christian Lackas
  • Publisher web site:
  • http://search.cpan.org/~otaka/Digest-Perl-MD4-1.4/MD4.pm

Digest::Perl::MD4 Tags


Digest::Perl::MD4 Description

Digest::Perl::MD4 is a Perl implementation of Ron Rivests MD4 Algorithm. Digest::Perl::MD4 is a Perl implementation of Ron Rivests MD4 Algorithm.This is not C-code interface (like Digest::MD5) but a Perl-only implementation of MD4 (like Digest::Perl::MD5). Because of this, it is slow but avoids platform specific complications. For efficiency you should use Digest::MD4 instead of this module if it is available.SYNOPSIS # Functional style use Digest::Perl::MD4 qw(md4 md4_hex md4_base64); $hash = md4 $data; $hash = md4_hex $data; $hash = md4_base64 $data; # OO style use Digest::Perl::MD4; $ctx = Digest::Perl::MD4->new; $ctx->add($data); $ctx->addfile(*FILE); $digest = $ctx->digest; $digest = $ctx->hexdigest; $digest = $ctx->b64digest; Requirements: · Perl


Digest::Perl::MD4 Related Software