Sorry, I should have removed the bin2hex() function, you no longer need
it :)Replace:$fingerprint = bin2hex(mhash(MHASH_MD5, $loginID . "^" .
$sequence . "^" . $timeStamp . "^" . $amount . "^",
$transactionKey));With: $fingerprint = mhash(MHASH_MD5, ...
You can use the following code snippet to create the mhash() function
which basically does the same thing as the mhash library: if
(!function_exists('mhash')){ if (!defined('MHASH_MD5'))
define('MHASH_MD5', 1); function mhash($hash, $data, $key) { if...