Skip to content

Instantly share code, notes, and snippets.

@az0day
az0day / md5.js
Created December 24, 2016 04:10 — forked from jhoff/md5.js
Closure of Joseph's Myers md5 javascript implementation
/*
* http://www.myersdaily.org/joseph/javascript/md5-text.html
*/
(function() {
var md5cycle = function(x, k) {
var a = x[0], b = x[1], c = x[2], d = x[3];
a = ff(a, b, c, d, k[0], 7, -680876936);