I am using php for a basic application to login into the system, be able to edit account information, and delete account. I have a mysql database. I need to encrypt/decrypt password using salt. How do I do it? Just need to make sure data is secure.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You don't want to encrypt passwords. You want to hash them. Some reading: http://php.net/manual/en/faq.passwords.php Related SO post: how to hash the password and get it back |
|||
|
|
|
Passwords should be hashed, in contrast to encryption this is a one-way function, that should make it impossible to get back the original password.
It's recommended to use a well established library like phpass to build the hashes. For further reading have a look at this tutorial. |
|||
|
|