M
|
MikeT 7/19/2020 |
I'm not sure what you actually want to do need: there's a help page for bcrypt in phpr: https://xlinesoft.com/phprunner/docs/secapi_password_hashing.htm |
![]() |
brito author 7/19/2020 |
I'm not sure what you actually want to do need: there's a help page for bcrypt in phpr: https://xlinesoft.com/phprunner/docs/secapi_password_hashing.htm If you need to migrate existing users with MD5 hashes, you'd need to either force each user to reset his/her password, or implement some workaround code that uses the existing hash in the db and migrates this hash to a new column with bcrypt.
|
![]() |
Admin 7/19/2020 |
Switching from plain text passwords to MD5 or bcrypt is possible. Switching from MD5 to bcrypt is not possible and this is the whole point of password hashing. |