Reputation: 142
I am trying to add users without hashing password and when I am trying to login without hash it always say invalid username and password is there any setting where I can disable check hash method for login .
Upvotes: 1
Views: 996
Reputation: 9614
Create a password hasher class that does not hash the password. Here is information on how to create and configure custom password hashers:
I would suggest to hash your users passwords, though. So stick with the CakePHP default which is the most secure option you have
Upvotes: 1