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/
|
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/ |
|||||||||||||
|
|
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 |
|||||||
|
|
This implementation is used by a number of well known websites and projects. It supports all major browsers. |
|||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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 :
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: |
|||
|
|
|
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) |
|||
|