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.

According to the PHP docs hash_algos - a function that return a list of registered hashing algorithms - , PHP can handle more than 40 hashing algorithms:

adler32; crc32; crc32b; gost; haval128,3; haval128,4; haval128,5; haval160,3; haval160,4; haval160,5; haval192,3; haval192,4; haval192,5; haval224,3; haval224,4; haval224,5; haval256,3; haval256,4; haval256,5; md2; md4; md5; ripemd128; ripemd160; ripemd256; ripemd320; salsa10; salsa20; sha1; sha224; sha256; sha384; sha512; snefru; snefru256; tiger128,3; tiger128,4; tiger160,3; tiger160,4; tiger192,3; tiger192,4; whirlpool

Changelog

Version   Description
5.4.0   Support for joaat, fnv132 and fnv164 was added. Support for Salsa10 and Salsa20 was removed.
5.3.0   Support for md2, ripemd256, ripemd320, salsa10, salsa20, snefru256 and sha224 was added

So my simple question is:

What's the cause for md5 being the de facto standard, at least in tutorials, middle-size companies and typical php scripts?

share|improve this question
It's a perfectly fine hashing algorithm. It's not cryptographically strong, if that is what you mean. Did you mean that? Is this a subjective discussion/complaint? – mario Jun 16 '12 at 10:37
1  
That part is obvious from the linked manual page. None of those 40 hashing algorithms are widely compatible with all PHP versions, they have been built-in only since very recently. WHY would you expect common scripts to use it? -- Also you should mention that you inquire about login scripts. Because using whirlpool or ripemd for file checksums isn't very clever either. – mario Jun 16 '12 at 10:50
2  
because "tutorial" sites like w3schools and nettuts keep perpetuating this stupidity – tereško Jun 16 '12 at 11:44
2  
@hakre 1. "de facto" is what "feels" standard. and it's like that, right ? The sky "is blue" because it's what we see, not because an official government statement says so. 2. Yes, I asked why MD5 is so popular. Glad you realized this. 3. It's related to PHP because - as written in the first line - i found this list of php implementations in the PHP docs. 4. Dude, you have too much time. – Panique Jun 16 '12 at 11:56
1  
Why the hell are you closing down this question ? Guys, you are seriously ruining stackoverflow ! – Panique Jun 16 '12 at 11:59
show 6 more comments

closed as not constructive by mario, tereško, hakre, Gordon, vascowhite Jun 16 '12 at 11:52

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.

5 Answers

up vote 3 down vote accepted

Well, I suppose it's the same reason why mysql library (and not PDO or at least mysqli) is often used to illustrate DB concepts in tutorials. ) Simplicity and age combined.

Besides, AFAIK md5 algorithm is one of the fastest.

By the way, in my opinion it's not the algorithm what matters - but the whole approach to what should be crypted. For example, using salt when storing passwords is somehow considered 'an advanced' technique - when in reality unsalted password storage in these days is one of the biggest vulnerabilities (as LinkedIn story plainly shows).

share|improve this answer

Only historical reasons. Especially existing code is usually not changed.

share|improve this answer
1  
You forgot another historical reason: Tons of bad tutorials which are still floating around and new "developers" (ok, "copy&paste monkeys" might fit better) who just copy from those tutorials without reading docs etc. – ThiefMaster Jun 16 '12 at 10:36
Definitely right. SO itself is a good example. Don't know how many times I commented a question with "mysql is deprecated`" :/ – KingCrunch Jun 16 '12 at 10:40

It probably shouldn't be : https://www.google.co.uk/search?q=is+md5+broken, it's been 'broken' for a while.

Mostly is because it's well known and all the tutorials etc use it to explain hashing.

share|improve this answer

The best guess is speed and conformity with familiar standards, md5 (after md4) has the fastest speed and generates as much as 32 characters.

share|improve this answer

Because it's quick to generate and enough for the most websites' purpose.

Just a comparison between MD5 and SHA-1.

share|improve this answer
The linked email is from 1996. I don't say, that SHA1 is faster than MD5 now, I just want to throw in, that it negligible nowadays. – KingCrunch Jun 16 '12 at 10:26
MD5 is STILL faster than SHA-1. SHA-1 is about 1.4x slower. – Pierpaolo Bagnasco Jun 16 '12 at 10:27
2  
I highly doubt people care about speed when choosing a password hashing algorithm. A slower one is actually better for such a purpose. – ThiefMaster Jun 16 '12 at 10:36
I didn't say the opposite, I just mentioned, that regarding security and with the current cpu power in mind the difference is negligible. codepad.org/bPh7eu3Z Note, that here 1 million hashes were generated. This is equivalent to 1 million login-,registration- or password-change-processes, which does not occur that often (usually users login once ;)). – KingCrunch Jun 16 '12 at 10:38

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