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.

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.

share|improve this question
Related: stackoverflow.com/questions/401656/… – jpo Nov 23 '12 at 9:51

2 Answers

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

share|improve this answer

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.

  1. Store only the hash-value in the database, and compare against this value for login.
  2. Use a unique salt per password, it can be stored plaintext in the same database field as your hash-value.
  3. Use a slow key-derivation function like Bcrypt, to prevent brute-force attacks.

It's recommended to use a well established library like phpass to build the hashes. For further reading have a look at this tutorial.

share|improve this answer
+1 for the helpful info & links – MikeSmithDev Nov 23 '12 at 15:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.