Perl Diver 2.31
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Digest::HMAC_SHA1

Name Digest::HMAC_SHA1
Version 1.04
Located at /usr/local/share/perl5
File /usr/local/share/perl5/Digest/HMAC_SHA1.pm
Is Core No
Search CPAN for this module Digest::HMAC_SHA1
Documentation Digest::HMAC_SHA1
Module Details Digest::HMAC_SHA1

NAME

Digest::HMAC_SHA1 - Keyed-Hashing for Message Authentication


SYNOPSIS

 # Functional style
 use Digest::HMAC_SHA1 qw(hmac_sha1 hmac_sha1_hex);
 $digest = hmac_sha1($data, $key);
 print hmac_sha1_hex($data, $key);
 # OO style
 use Digest::HMAC_SHA1;
 $hmac = Digest::HMAC_SHA1->new($key);
 $hmac->add($data);
 $hmac->addfile(*FILE);
 $digest = $hmac->digest;
 $digest = $hmac->hexdigest;
 $digest = $hmac->b64digest;


DESCRIPTION

This module provide HMAC-SHA-1 hashing.


SEE ALSO

the Digest::HMAC manpage, the Digest::SHA manpage, the Digest::HMAC_MD5 manpage


MAINTAINER

Andrew Rodland <arodland@cpan.org>


ORIGINAL AUTHOR

Gisle Aas <gisle@aas.no>

Perl Diver brought to you by ScriptSolutions.com © 1997- 2024