64) { $key = pack("H*",md5($key)); } $k_ipad = $key ^ str_repeat(chr(0x36), 64) ; $k_opad = $key ^ str_repeat(chr(0x5c), 64) ; /* Heh, let's get re-entrant. PHP is so kinky */ $hmac=hmac($k_opad . pack("H*",md5($k_ipad . $data)) ); return $hmac; } ?>