6

So when it comes to password encryption in php, I've learned to use password_hash($password, PASSWORD_BCRYPT); // Blowfish

Anybody else use this? What do you php lovers like to use?

Comments
  • 1
    Nope, wanted to but i used PASSWORD_DEFAULT instead,
    The difference are small
  • 2
    Hmm you're lucky ny learning this way. Yes it's a good practice anyway, bcrypt is a very well known and used method, and password_hash is very easy to manipulate.
  • 0
    @goodboy The default is BCRYPT.
Add Comment