示例

示例 #1 计算 MD5 摘要和 HMAC 并以十六进制形式打印出来

<?php
$input
= "what do ya want for nothing?";
$hash = mhash(MHASH_MD5, $input);
echo
"The hash is " . bin2hex($hash) . "<br />\n";
$hash = mhash(MHASH_MD5, $input, "Jefe");
echo
"The hmac is " . bin2hex($hash) . "<br />\n";
?>

上面的例子将输出

The hash is d03cb659cbf9192dcd066272249f8412 
The hmac is 750c783e6ab0b503eaa86e310a5db738 

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top