23.02.2018, 12:18
Quote:
I think the problem it's on your gamemode samp server, when u hashing the password, NOT in your UCP "De-Hashing". I had this problem some time ago, and the problem was that, the hashing SHA256 on my server didn't return the same hashed string like the PHP version. I suggest you to post the method that you hashing the password on your gamemode, so we can figure out what's wrong.
|
here is the code
PHP код:
<?php
$password = "21dec2001";
$crypted = hash('sha256',$password);
echo $crypted;
?>