When users register, should I store their email in the db as is or hash it. I want to be able to decrypt it later, so should I use md5?
thank you!
The other answers say it all.
However, you should always encrypt hash passwords with at least md5() and a salt, as pointed out in Ivan's reply.