If you mean that you had existing hashed passwords before using Auth, keep in mind that Cake uses its own salt as well. So you likely will not be able to have a mix of the two.
Auth calls Security::hash() to create the hash. However, there is no $hashType set in Security by default; one has to call setHash() first. But, because Auth doesn't get an instance of Security to create the password, I'm not sure if that'll work. On Sat, Apr 26, 2008 at 10:33 PM, Kyle Decot <[EMAIL PROTECTED]> wrote: > > I am using the Auth component and am having some problems with the > users' passwords. I was storing them as MD5's but when I began using > the Auth component, i began getting invalid username/password issues. > How does Auth encrypt the passwords. Is there a way in which I can > make Auth use MD5? > > Thanks as always for the help. > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
