array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), 'this' => array ( 0 => 'function.hash-hmac.php', 1 => 'hash_hmac', 2 => 'Generate a keyed hash value using the HMAC method', ), 'up' => array ( 0 => 'ref.hash.php', 1 => 'Hash Funzioni', ), 'prev' => array ( 0 => 'function.hash-hkdf.php', 1 => 'hash_hkdf', ), 'next' => array ( 0 => 'function.hash-hmac-algos.php', 1 => 'hash_hmac_algos', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/hash/functions/hash-hmac.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 5 >= 5.1.2, PHP 7, PHP 8, PECL hash >= 1.1)
hash_hmac — Generate a keyed hash value using the HMAC method
algo
Name of selected hashing algorithm (e.g. "sha256"
).
For a list of supported algorithms see hash_hmac_algos().
Nota:
Non-cryptographic hash functions are not allowed.
data
Message to be hashed.
key
Shared secret key used for generating the HMAC variant of the message digest.
binary
When set to true
, outputs raw binary data.
false
outputs lowercase hexits.
Returns a string containing the calculated message digest as lowercase hexits
unless binary
is set to true in which case the raw
binary representation of the message digest is returned.
Throws a ValueError exception if
algo
is unknown or is a non-cryptographic hash
function.
Versione | Descrizione |
---|---|
8.0.0 |
Now throws a ValueError exception if
algo is unknown or is a
non-cryptographic hash function; previously, false was returned instead.
|
7.2.0 | Usage of non-cryptographic hash functions (adler32, crc32, crc32b, fnv132, fnv1a32, fnv164, fnv1a64, joaat) was disabled. |
Example #1 hash_hmac() example
<?php
echo hash_hmac('sha256', 'The quick brown fox jumped over the lazy dog.', 'secret');
?>
Il precedente esempio visualizzerĂ :
9c5c42422b03f0ee32949920649445e417b2c634050833c5165704b825c2a53b