Perl Create MD5

Source: Internet
Author: User
Tags md5

Read the document: After HTTP://SEARCH.CPAN.ORG/~GAAS/DIGEST-MD5-2.39/MD5.PM,

Very useful Chapter paragraph:

This is useful if calculating checksum for files:

    Use DIGEST::MD5;

    My $file = Shift | | "/ETC/PASSWD";
    Open (FILE, $file) or die "Can ' t Open ' $file ': $!";
    Binmode (FILE);

    $MD 5 = digest::md5->new;
    while (<FILE>) {
        $md 5->add ($_);
    }
    Close (FILE);
    Print $md 5->b64digest, "$file/n";

Or we can use the AddFile method for more efficient reading of the file:

    Use DIGEST::MD5;

    My $file = Shift | | "/ETC/PASSWD";
    Open (FILE, $file) or die "Can ' t Open ' $file ': $!";
    Binmode (FILE);

    Print Digest::md5->new->addfile (*file)->hexdigest, "$file/n";
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.