I am trying to decrypt an MD5 hash that I create in a php file and the echo, I recieve the MD5 via WWWForm.data. I need to decrypt the MD5 using the same secret key or salt.
$secretKey="REPLACED"; #
$real_hash = md5($datas["type"] . $secretKey);
$secretKey2="REPLACED";
$real_hash2 = md5($real_hash . $secretKey2);
echo $real_hash2;
I am double salting this MD5 for security reasons. the reason I am doing this is because if you are a pro member on our site, you will have special in game advantages. Please help me