ARGON2I password hashing

Laraship QuestionsCategory: TechnicalARGON2I password hashing
st3fan asked 5 years ago
The default hashing is bcrypt, and as far as I can see the function password_hash does exist. Are we able to change the hashing to argon2i?
2 Answers
laraship Staff answered 5 years ago
Hello, The default hashing driver for your application is configured in the config/hashing.php configuration file. There are currently three supported drivers: Bcrypt and Argon2 (Argon2i and Argon2id variants).   if hashing file is not there you can download it from here https://raw.githubusercontent.com/laravel/laravel/master/config/hashing.php  
laraship Staff answered 5 years ago
Hello, You're right, looks like bcrypt is supported for now, we will add this feature to our road map