Search code examples
javascriptperformancemd5

fastest MD5 Implementation in JavaScript


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.


Solution

  • 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