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

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

Digest::HMACSHA1(3) User Contributed Perl Documentation Digest::HMACSHA1(3)

NAME

Digest::HMACSHA1 - Keyed-Hashing for Message Authentication

SYNOPSIS

# Functional style

use Digest::HMACSHA1 qw(hmacsha1 hmacsha1hex);

$digest = hmacsha1($data, $key);

print hmacsha1hex($data, $key);

# OO style

use Digest::HMACSHA1;

$hmac = Digest::HMACSHA1->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

Digest::HMAC, Digest::SHA1, Digest::HMACMD5 AUTHOR Gisle Aas

perl v5.8.8 2001-03-13 Digest::HMACSHA1(3)




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