PHP » PYTHON |
login |
register |
about
|
PYTHON hash_hmac
is this article helpful?
|
Python replacement for PHP's hash_hmac
[
edit
| history
]
import hmac h = hmac.new(key, data, digest_module) # hex output: result = h.hexdigest() # raw output: result = h.digest() hash_hmac(PHP 5 >= 5.1.2, PECL hash >= 1.1) hash_hmac — Generate a keyed hash value using the HMAC method Description
string hash_hmac
( string $algo
, string $data
, string $key
[, bool $raw_output= false
] )
Parameters
Return ValuesReturns a string containing the calculated message digest as lowercase hexits unless raw_output is set to true in which case the raw binary representation of the message digest is returned. Examples
Example #1 hash_hmac() example
<?phpThe above example will output: b8e7ae12510bdfb1812e463a7f086122cf37e4f7
See Also
|
more
Recently updated
more
Most requested
|