i am trying to work around using the following function because my ISP does not have mhash installed or compiled with php. (see- mhash.sourcefourge.net). Any help would be greatly appreciated
function hmac ($key, $data)
{
return (bin2hex (mhash(MHASH_MD5, $data, $key)));
}