sounds like you php does not have the mhash library enabled.
try changing the WA_eCart/checkoutScripts/WA_simlib.php file to use the hash function instead.
change:
return (bin2hex (mhash(MHASH_MD5, $data, $key)));
to:
return (bin2hex (hash(MHASH_MD5, $data, $key)));