NAME
Digest::file - Calculate digests of files
SYNOPSIS
# Poor mans "md5sum" command
use Digest::file qw(digestfilehex);
for (@ARGV) {print digestfilehex($, "MD5"), " $\n";
}DESCRIPTION
This module provide 3 convenience functions to calculate the digest of files. The following functions are provided:digestfile( $file, $algorithm, [$arg,...] )
This function will calculate and return the binary digest of the bytes of the given file. The function will croak if it fails to open or read the file.The $algorithm is a string like "MD2", "MD5", "SHA-1", "SHA-512".
Additional arguments are passed to the constructor for the imple-
mentation of the given algorithm.digestfilehex( $file, $algorithm, [$arg,...] )
Same as digestfile(), but return the digest in hex form.digestfilebase64( $file, $algorithm, [$arg,...] )
Same as digestfile(), but return the digest as a base64 encoded string.SEE ALSO
Digestperl v5.8.8 2001-09-21 Digest::file(3pm)