php4的md5 hashu hmac
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php4的md5 hashu hmac相关的知识,希望对你有一定的参考价值。
function hmac ($key, $data) { // RFC 2104 HMAC implementation for php. // Creates an md5 HMAC. // Eliminates the need to install mhash to compute a HMAC // Hacked by Lance Rushing $b = 64; // byte length for md5 } $k_ipad = $key ^ $ipad ; $k_opad = $key ^ $opad; }
以上是关于php4的md5 hashu hmac的主要内容,如果未能解决你的问题,请参考以下文章