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

There are many MD5 JavaScript implementations out there. Does anybody know which one is the most advanced, most bugfixed and fastest?

I need it for this tool: http://www.bruechner.de/md5file/js/

share|improve this question
   
Why do you need a "fast" MD5 implementation? – AnthonyWJones Oct 31 '09 at 22:39
There are some different implementations out there, some are broken. And I need it for large binary files. – powtac Nov 1 '09 at 0:06
I needed it for this tool: bruechner.de/md5file/js – powtac Nov 10 '09 at 4:49
@anthonywjones. Log day. Stupid mistake. Thanks for the clarification. – simonmorley Dec 19 '12 at 21:14
@AnthonyWJones is there a need for any other type of md5 function? It's not like a "slow" md5 function really serves any purpose.. does it? – Lee Olayvar Mar 2 at 21:31
show 3 more comments

6 Answers

up vote 18 down vote accepted

I've heard Joseph's Myers implementation is quite fast. Additionally, he has a lengthy article on Javascript optimization describing what he learned while writing his implementation. It's a good read for anyone interested in performant javascript.

http://www.webreference.com/programming/javascript/jkm3/

His MD5 implementation can be found here

share|improve this answer
14  
"In order to make my JavaScript MD5 code faster than everyone else's, I had to take advantage of local function variables." What a breakthrough! – Glenn Maynard Dec 16 '10 at 7:12
A demonstration of this md5 library can be found here: jsfiddle.net/v28gq – Anderson Green Jan 21 at 13:10

This implementation is used by a number of well known websites and projects. It supports all major browsers.

share|improve this answer
6  
Never trust crypto code from someone who suggests using a MD5 in Javascript for "self-decrypting pages" to protect "confidential information". – Glenn Maynard Dec 16 '10 at 7:10

I found a number of articles on this subject. They all suggested Joseph Meyers implementation.

see: http://jsperf.com/md5-shootout on some tests

in My quest for the ultimate speed i looked at this code, an i saw that it could be improved. So i created a new JS script based on the Joseph Meyers code.

see Improved Jospeh Meyers code

share|improve this answer
Cool, thank you for sharing! – powtac Aug 20 '12 at 11:57

You could also check my md5 implementation. It should be approx. the same as the other posted above. Unfortunately, the performance is limited by the inner loop which is impossible to optimize more.

share|improve this answer

I would suggest you to use CryptoJS in this case.

Basically CryptoJS is a growing collection of standard and secure cryptographic algorithms implemented in JavaScript using best practices and patterns. They are fast, and they have a consistent and simple interface.

So In case you want calculate hash(MD5) of your password string then do as follows :

<script src="http://crypto-js.googlecode.com/svn/tags/3.0.2/build/rollups/md5.js"></script>
<script>
    var passhash = CryptoJS.MD5(password);

    $.post(
      'includes/login.php', 
      { user: username, pass: passhash },
      onLogin, 
      'json' );
</script>

So this script will post hash of your password string to the server.

For further info and support on other hash calculating algorithms you can visit at:

http://code.google.com/p/crypto-js/

share|improve this answer

If the performance of your application is limited by a Javascript implementation of MD5, then you're really doing something wrong. Consider an architectural change (Hint: use MD5 less often)

share|improve this answer
Im not using MD5 in an "native" application with JS, its a online MD5 check tool: bruechner.de/md5file/js no need of native app for MD5 anymore ;) – powtac Oct 27 '11 at 18:08

Your Answer

 
discard

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

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