+ 4

What is a blowfish in PHP?

I'm trying to do a login password encryption using PHP and MSQLI and someone suggested using blowfish. Any oversimplified answer would be great thanks.

10th Oct 2017, 8:55 PM
Leo Williams Vanualailai
Leo Williams Vanualailai - avatar
2 odpowiedzi
+ 2
Blowfish is encryption standard(coding in another language) , it uses hashing i.e converting a input to output which can't be retrieved back . Hashing is generally used to transmit patterns of bit (usually hex) which are highly secure as it's unpredictable.
12th Oct 2017, 10:32 AM
Gokulakrishnan
Gokulakrishnan - avatar
+ 6
Blowfish is an encryption algorithm. It's old though and not the most secure cipher. I recommend AES-256, or Twofish, which is the successor to blowfish.
10th Oct 2017, 9:06 PM
aklex
aklex - avatar