Hi.
I have a classic migration problem: in the store from which I import data, passwords are encrypted by plain MD5. So I need to inject a password reencryption procedure on login attempts. That is, first received password must be compared to MD5 value, upon success in which the MD5 value is deleted from the database and received password is encrypted using Presta's own procedure.
My question is, if there are people who've already written this, which files did you have to modify, which classes/methods did you extend?
Thank you.