You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Argon2 is a new password hashing algorithm added to PHP 7.2. It is more secure and faster than Bcrypt.
Is it possible to expose this functionality in Laravel? One way I believe this can be done with backward compatibility is to set which hashing algorithm to use using either a config value or env. Some Laravel apps will already have hashed passwords in the DB using Bcrypt.
The text was updated successfully, but these errors were encountered:
Not against this being added, but I didnt think being "faster" was a good thing when it came to password hashing, surely that just means a brute force attack takes less time?
(A quick look into Argon and it seems the time is customizable by choosing how many iterations you want just like bcrypt can, just not sure password algorithm should be based on being fast)
Argon2 is a new password hashing algorithm added to PHP 7.2. It is more secure and faster than Bcrypt.
Is it possible to expose this functionality in Laravel? One way I believe this can be done with backward compatibility is to set which hashing algorithm to use using either a config value or env. Some Laravel apps will already have hashed passwords in the DB using Bcrypt.
The text was updated successfully, but these errors were encountered: