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've been trying to add some sha1() encryption to an account creation page on my website, but as soon as I change $_POST['password'] to sha1($_POST['password']), the signup form completely shuts down and stops working. Any advice?

share|improve this question
3  
Show some code --- – Pekka 웃 Oct 2 '11 at 0:22
You'll need to provide some more details (preferably with code) of how you're using the result of that sha1() call. "Shuts down and stops working" probably means an error in your script somewhere. – Wyzard Oct 2 '11 at 0:24
8  
BTW, a hash function isn't "encryption". – Wyzard Oct 2 '11 at 0:24
To expand on @Wyzard comment... php.net/manual/en/faq.passwords.php#faq.passwords.fasthash Taken directly from the link on php's sha1 page – Brombomb Oct 2 '11 at 0:27
1  
SHA1 is not encryption, it's hashing. There's a difference. – Jared Farrish Oct 2 '11 at 0:45
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.