SA-MP Forums Archive
Which is more secure MYSQL encryption? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Which is more secure MYSQL encryption? (/showthread.php?tid=660278)



Which is more secure MYSQL encryption? - sampls1 - 29.10.2018

Hello Have a nice day
I wanted to ask that question MYSQL, which is the most secure encryption recently I use plugin R41-4.
I mean saved password encryption.
Thank you all.




Re: Which is more secure MYSQL encryption? - KinderClans - 29.10.2018

Bcrypt


Re: Which is more secure MYSQL encryption? - sampls1 - 29.10.2018

Quote:
Originally Posted by KinderClans
View Post
Bcrypt
I understand, but I see that they created sha256 encryption in the login log example.
Bcrypt is safer than SHA256?

Thank you.


Re: Which is more secure MYSQL encryption? - KinderClans - 29.10.2018

Combination of both would be perfect.

Personally i use SHA256 + SALT.


Re: Which is more secure MYSQL encryption? - BigETI - 30.10.2018

Encryption is not hashing. If you store password either plain text or encrypted, you are doing something wrong. SHA256 is not an encryption algorithm, but a hashing algorithm. Bcrypt is based of Blowfish and it was primarily designed for storing passwords.