jeremykenedy / laravel-users

A Users Management Package that includes all necessary routes, views, models, and controllers for a user management dashboard and associated pages for managing Laravels built in user scaffolding.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Using argon2id for password hashing

joostdebruijn opened this issue · comments

I configured argon2id hasing in config/hashing.php as explained in the documentation of Laravel itself. However, when I create users via this module users get a bcrypt hashed password.

In the UsersManagementController I see that the bcrypt-function is used. Maybe this could be replaced with Hash::make() which respects the hashing configuration? If that is okay, I can purpose a pull request for it.