PerlIO::via::MD5 - PerlIO layer for creating an MD5 digest of a file


PerlIO-via-MD5 documentation  | view source Contained in the PerlIO-via-MD5 distribution.

Index


NAME

Top

PerlIO::via::MD5 - PerlIO layer for creating an MD5 digest of a file

SYNOPSIS

Top

 use PerlIO::via::MD5;

 PerlIO::via::MD5->method( 'hexdigest' ); # default, return 32 hex digits
 PerlIO::via::MD5->method( 'digest' );    # return 16-byte binary value
 PerlIO::via::MD5->method( 'b64digest' ); # return 22-byte base64 (MIME) value

 open( my $in,'<:via(MD5)','file' )
  or die "Can't open file for digesting: $!\n";
 my $digest = <$in>;

DESCRIPTION

Top

This module implements a PerlIO layer that can only read files and return an MD5 digest of the contents of the file.

CLASS METHODS

Top

There is one class method.

method

 $method = PerlIO::via::MD5->method;  # obtain current setting
 PerlIO::via::MD5->method( $method ); # set new digest method

Calling this class method with a new value will cause all subsequently opened files to assume that new setting. The method however is remembered within the layer, so that it becomes part of the information that is associated with that file.

If it were possible to pass parameters such as this to the layer while opening the file, that would have been the approach taken. Since that is not possible yet, this way of doing it seems to be the next best thing.

REQUIRED MODULES

Top

 Digest::MD5 (any)

SEE ALSO

Top

PerlIO::via, Digest::MD5, PerlIO::via::StripHTML, PerlIO::via::QuotedPrint, PerlIO::via::Base64, PerlIO::via::Rotate.

COPYRIGHT

Top


PerlIO-via-MD5 documentation  | view source Contained in the PerlIO-via-MD5 distribution.