md5 - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: md5 (
/showthread.php?tid=659756)
md5 -
g1venchy - 15.10.2018
originally md5_hash for pawn was created by y_less, but its not in his github user, so where could i get the new one?
i used it for players password security, passwords are salted and hashed with md5, i know its old way of doing this, but still
Re: md5 -
KinderClans - 15.10.2018
https://github.com/GRGServer/SAMP/bl...cludes/MD5.inc
I won't recommend you using MD5 for salting/hashing passwords.
Go for BCrypt or just use SHA-256 + SALT method. More secure.
Re: md5 -
g1venchy - 15.10.2018
but mybb forum still uses that hashing method, thats why i still use it
Re: md5 -
g1venchy - 15.10.2018
so only bcrypt?