Which is the best recommended algorithm to use for encrypting passwords in php/mysql
|
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.
|
I would use the php's |
|||||||||||
|
|
SHA-512 is the best & most secure way to hash a password, and if that's not available then use SHA-1. |
|||||||||||||
|
|
|
|||
|
|
Level 3 security is very, very strong. Probably too strong. |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||||||||||
|
|
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 |
|||
|
|
