0

I have a application called A which was developed in Laravel 5.4 and having more than 5000 users. I have to migrate the application to Laravel 5.6 without asking them to change the password.

Albert
  • 174
  • 4
  • 16

1 Answers1

1

Hashes generated in 5.4 should have used bcrypt, if you did not alter the service provider or bind a different implementation.

Hashes in 5.6 support both bcrypt and argon but default to bcrypt if you did not change the driver in your config/hashing.php file.

Therefore, by default both use bcrypt and should be compatible.

Devon Bessemer
  • 34,461
  • 9
  • 69
  • 95