Manual Pages for UNIX Darwin command on man Digest::file
MyWebUniversity

Manual Pages for UNIX Darwin command on man Digest::file

Digest::file(3pm) Perl Programmers Reference Guide Digest::file(3pm)

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

Digest

perl v5.8.8 2001-09-21 Digest::file(3pm)




Contact us      |      About us      |      Term of use      |       Copyright © 2000-2019 MyWebUniversity.com ™