Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Which is the best recommended algorithm to use for encrypting passwords in php/mysql

share|improve this question
Hashing and encrypting are not the same thing. Do you need to recover the original password? – Álvaro G. Vicario Jan 12 '10 at 10:57
Just storing passwords in the database in an unreadable format – Gatura Jan 12 '10 at 11:29
here is good article: chargen.matasano.com/chargen/2007/9/7/… – miki725 Jan 10 '11 at 2:48

closed as not constructive by casperOne Aug 8 '12 at 0:24

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

7 Answers

up vote 0 down vote accepted

I would use the php's crypt() function because there will not be anyway for the password to be decrypted. When I need to check the newly entered password I just have to encrypt that one and compare the two results

share|improve this answer
9  
-1 complete non-sense: according to the manual: crypt() will return a hashed string using the standard Unix DES-based algorithm or alternative algorithms that may be available on the system. – Johan Oct 7 '11 at 11:52
3  
@Johan You can easily change the hash function to be used, salt and the number of rounds with crypt(). – Daniel Jonsson Jul 1 '12 at 21:36
@Daniel Jonsson +1 The snippet of documentation that Johan mentions even says so! Rudeness should not be welcome here. – allyourcode Dec 8 '12 at 23:21

SHA-512 is the best & most secure way to hash a password, and if that's not available then use SHA-1.

share|improve this answer
Are you saying SHA-512 is worse or less secure? – Core Xii Oct 18 '10 at 18:44
Well obviously SHA-512 is even stronger, now you're just being a smart arse. – TravisO Nov 4 '10 at 19:10
1  
I would not agree. Read this article: chargen.matasano.com/chargen/2007/9/7/… – miki725 Jan 10 '11 at 2:47
3  
+1, Salt SHA-512 is the best option. – Johan Oct 7 '11 at 11:53

There's a decent article here - short answer, use crypt(), and make sure you use a salt.

share|improve this answer
  1. Current thinking is to use a SLOW hash algo. This causes "brute forcers" to spend lots of time generating all those attempts.

  2. Much smarter still is to track URI requests by IP and block with explanation when 5 login attempts fail from same IP within any given 5 minute period.

  3. Bank-smarter still is to do #1, #2 and also require a secondary pass challenge once the first one succeeds. Triple failure at second challenge results in lock-out.

Level 3 security is very, very strong. Probably too strong.

share|improve this answer

Most people now agree SHA is not the best way to go, since these algorithms are bad at resisting brute-force attacks. It's better to use bcrypt, scrypt or PBKDF2 see this Q&A.

Here is a guide on how to implement bcrypt in php.

share|improve this answer

There are a lot of options - see the php hash docs for the complete list.

Speed is not an advantage, so using sha-512 or whirlpool is a good idea. You don't have to store the full length of the hash in mysql, for instance you could hash something as whirlpool, which is 128 characters long, and store only the first 64 characters for efficiency.

share|improve this answer
1  
Truncating a hash is very bad advice, and is absolutely unnecessary, as sha256 will return 64 hexadecimal digits, and it's designed for that length. Truncating any hash will lower security significantly! Also you are writing about 128 characters - 0-9,a-f. This is inefficient storage of binary values such as hash, as it's taking twice as much space, so 64-bit binary field would store your 128 characters and you don't need to truncate anything. Although it could be better for maintenance to have hash in more readable format, you can use base64 encryption. – marianboda May 13 '10 at 18:30
@praksant I'm not a crypto expert, but it seems to me that storing characters 32-96 of a whirlpool hash is good enough for the vast majority of applications. It does increase the chances of an attacker finding a collision, but still, this would be be a lot better than SHA1/MD5, which so many people still use. What improvement would it be to use base64? – JAL May 13 '10 at 22:14
1  
I'm no crypto expert either, but if there is a way to store whole hash in the same number of bytes, why should anyone make a sacrifice in security for nothing? I'm not saying it's not secure enough for many applications. It might be. And base64 encoding will store binary data at 6 bits per byte, hexadecimal form only 4 per byte. So with base64 you would need 86 bytes to store 512-bit hash instead of 128 bytes. In raw binary it would be 64 bytes. – marianboda May 14 '10 at 0:45

Miki725 raises interesting points with the Matasano article Whilst sha512 is better than md5 cryptographically, bcrypt beats them all because it is slower and thus costs more to attack. Slower is not bad the internet is slow already, it's millions of times slower than CPU cache, and thousands of times slower than disk. Making password checks take 200ms instead of 1ms to compute is not going to bother any users.

Most importantly do not forget to use a nonce that is randomly generated and different for each user.

bcrypt is going to be sub-optimal in PHP because php is interpreted and this gives the attacker some advantage but there's a how to in this stackoverflow article

share|improve this answer

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