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!
When you use md5 you won't be able to decrypt it. md5 is a one-way-hash function.