Using argon2id for password hashing
joostdebruijn opened this issue · comments
Joost de Bruijn commented
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.