SHA256 SALT in PHP? - Printable Version + open.mp forum (https://forum.open.mp) -- Forum: General (https://forum.open.mp/forumdisplay.php?fid=19) --- Forum: Programming (https://forum.open.mp/forumdisplay.php?fid=56) --- Thread: SHA256 SALT in PHP? (/showthread.php?tid=1853) |
SHA256 SALT in PHP? - CoPete? - 2021-04-08 Hi!?please I would like you to help me authenticate the users on the web page, the problem I have is that I use in the gamemode the password settlement system sha256 a salt that I got in forum samp (maybe they know which)?and I don't know how I could do an autiticator?in php, thanks RE: SHA256 SALT in PHP? - Snow - 2021-04-10 Use bcrypt instead of sha256. Its more secure and can be authenticated via PHP automatically. |