Man Page: digest::hmac_md5
Operating Environment: debian
Section: 3pm
Digest::HMAC_MD5(3pm) User Contributed Perl Documentation Digest::HMAC_MD5(3pm)NAMEDigest::HMAC_MD5 - Keyed-Hashing for Message AuthenticationSYNOPSIS# 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;DESCRIPTIONThis module provide HMAC-MD5 hashing.SEE ALSODigest::HMAC, Digest::MD5, Digest::HMAC_SHA1AUTHORGisle Aas <gisle@aas.no> perl v5.12.4 2009-03-06 Digest::HMAC_MD5(3pm)
| Related Man Pages |
|---|
| digest(3pm) - redhat |
| digest::hmac(3) - mojave |
| digest::crc(3) - mojave |
| digest::bubblebabble(3pm) - debian |
| digest::crc(3pm) - debian |
| Similar Topics in the Unix Linux Community |
|---|
| Installing Dash Shell on OS X Lion |
| Is UNIX an open source OS ? |
| A (ksh) Library For and From UNIX.com |
| How to copy a column of multiple files and paste into new excel file (next to column)? |