Can I use kohana 3.0 Auth module with 3.2

318 Views Asked by At

I am trying to upgrade my app to Kohana 3.2 but I'm having trouble because all my users are in the database with passwords encrypted by Auth from Kohana 3.0. It looks like 3.2 does it differently. Can I configure 3.2 to use the same encryption?

1

There are 1 best solutions below

4
On

There is no simple way for this. Kohana 3.2 uses hash_hmac() instead of hash+salt. Also there a changes in login workflow (for example, Model_User in 3.2 doesnt contain any login logic). You will need to copy a lot of code from 3.0 to 3.2, I dont think its a good idea.

What about sending emails with a password recovery link? Old password will be broken, but user can simply redefine password. And dont forget to logout all "remembered" users (somewhere in your basic controller, before() method is perfect place for it).

PS. Sorry for my english, Its not my native language.