Linux.pl
Opcje wyszukiwania podręcznika man:
Lista stron man zaczynających się od znaku:
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   ALPHA   NUM   OTHER   ALL
Digest::HMAC_MD5(3pm) User Contributed Perl DocumentationDigest::HMAC_MD5(3pm)

NAME
       Digest::HMAC_MD5 - Keyed-Hashing for Message Authentication

SYNOPSIS
        # Functional style
        use Digest::HMAC_MD5 qw(hmac_md5 hmac_md5_hex);
        $digest = hmac_md5($data, $key);
        print hmac_md5_hex($data, $key);

        # OO style
        use Digest::HMAC_MD5;
        $hmac = Digest::HMAC_MD5->new($key);

        $hmac->add($data);
        $hmac->addfile(*FILE);

        $digest = $hmac->digest;
        $digest = $hmac->hexdigest;
        $digest = $hmac->b64digest;

DESCRIPTION
       This module provide HMAC-MD5 hashing.

SEE ALSO
       Digest::HMAC, Digest::MD5, Digest::HMAC_SHA1

AUTHOR
       Gisle Aas <gisle@aas.no>

perl v5.32.0                      2020-12-23             Digest::HMAC_MD5(3pm)

Czas wygenerowania: 0.00025 sek.


Created with the man page lookup class by Andrew Collington.
Based on a C man page viewer by Vadim Pavlov
Unicode soft-hyphen fix (as used by RedHat) by Dan Edwards
Some optimisations by Eli Argon
Caching idea and code contribution by James Richardson

Copyright © 2003-2025 Linux.pl
Hosted by Hosting Linux.pl