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 need a source code of md5 function written in php. (Not C, really on pure php) Where I can get this? Thanks.

I need it to make some changes to the algorithm.

share|improve this question
why? PHP has md5 function. If you want to PHP it (can't imagine why), download the PHP sources, look for that function in C, and copy it practically exactly like written in C, prefix variables with $, lose the types. – AlexanderMP Oct 2 '10 at 8:39
@Alexander: You can't simply take a C code and put $ in front of all variables... C is really different from PHP. – NikiC Oct 2 '10 at 8:55
I know it's different, but the way such basic extensions are written, it's almost the same. – AlexanderMP Oct 2 '10 at 17:13

closed as not constructive by George Stocker Sep 10 '12 at 1:40

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.

2 Answers

up vote 3 down vote accepted

You can write your own based on this md5 algorithm as pseudo code.

But if the function md5() is in C it's because it will compute faster than the same algorithm in PHP. If you just want to understand how MD5 is calculated then just look at the algorithm.

Or you could use this implementation done by a SO member.


On the same topic :

share|improve this answer
Thanks for this post, I need this now :) – Vdt Oct 3 '10 at 11:31

Take a look at the MD5 function, built into PHP.

http://us.php.net/manual/en/function.md5.php

share|improve this answer
I think that the OP wants to rewrite the md5() function himself. – Colin Hebert Oct 2 '10 at 8:43
Yes, I want to rewrite the md5() function. – user464506 Oct 2 '10 at 8:45
Oh, I guess I misunderstood the question. – RexM Oct 4 '10 at 13:31

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