michael@0: /* michael@0: * A JavaScript implementation of the RSA Data Security, Inc. MD4 Message michael@0: * Digest Algorithm, as defined in RFC 1320. michael@0: * Version 2.1 Copyright (C) Jerrad Pierce, Paul Johnston 1999 - 2002. michael@0: * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet michael@0: * Distributed under the BSD License michael@0: * See http://pajhome.org.uk/crypt/md5 for more info. michael@0: */ michael@0: michael@0: /* michael@0: * Configurable variables. You may need to tweak these to be compatible with michael@0: * the server-side, but the defaults work in most cases. michael@0: */ michael@0: var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */ michael@0: var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */ michael@0: var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */ michael@0: michael@0: /* michael@0: * These are the functions you'll usually want to call michael@0: */ michael@0: function hexmd4(s){ return binl2hex(coremd4(str2binl(s), s.length * chrsz));} michael@0: function b64md4(s){ return binl2b64(coremd4(str2binl(s), s.length * chrsz));} michael@0: function strmd4(s){ return binl2str(coremd4(str2binl(s), s.length * chrsz));} michael@0: function hexhmacmd4(key, data) { return binl2hex(corehmacmd4(key, data)); } michael@0: function b64hmacmd4(key, data) { return binl2b64(corehmacmd4(key, data)); } michael@0: function strhmacmd4(key, data) { return binl2str(corehmacmd4(key, data)); } michael@0: michael@0: /* michael@0: * Perform a simple self-test to see if the VM is working michael@0: */ michael@0: function md4vmtest() michael@0: { michael@0: return hexmd4("abc") == "a448017aaf21d8525fc10ae87aa6729d"; michael@0: } michael@0: michael@0: /* michael@0: * Calculate the MD4 of an array of little-endian words, and a bit length michael@0: */ michael@0: function coremd4(x, len) michael@0: { michael@0: /* append padding */ michael@0: x[len >> 5] |= 0x80 << (len % 32); michael@0: x[(((len + 64) >>> 9) << 4) + 14] = len; michael@0: michael@0: var a = 1732584193; michael@0: var b = -271733879; michael@0: var c = -1732584194; michael@0: var d = 271733878; michael@0: michael@0: for(var i = 0; i < x.length; i += 16) michael@0: { michael@0: var olda = a; michael@0: var oldb = b; michael@0: var oldc = c; michael@0: var oldd = d; michael@0: michael@0: a = md4ff(a, b, c, d, x[i+ 0], 3 ); michael@0: d = md4ff(d, a, b, c, x[i+ 1], 7 ); michael@0: c = md4ff(c, d, a, b, x[i+ 2], 11); michael@0: b = md4ff(b, c, d, a, x[i+ 3], 19); michael@0: a = md4ff(a, b, c, d, x[i+ 4], 3 ); michael@0: d = md4ff(d, a, b, c, x[i+ 5], 7 ); michael@0: c = md4ff(c, d, a, b, x[i+ 6], 11); michael@0: b = md4ff(b, c, d, a, x[i+ 7], 19); michael@0: a = md4ff(a, b, c, d, x[i+ 8], 3 ); michael@0: d = md4ff(d, a, b, c, x[i+ 9], 7 ); michael@0: c = md4ff(c, d, a, b, x[i+10], 11); michael@0: b = md4ff(b, c, d, a, x[i+11], 19); michael@0: a = md4ff(a, b, c, d, x[i+12], 3 ); michael@0: d = md4ff(d, a, b, c, x[i+13], 7 ); michael@0: c = md4ff(c, d, a, b, x[i+14], 11); michael@0: b = md4ff(b, c, d, a, x[i+15], 19); michael@0: michael@0: a = md4gg(a, b, c, d, x[i+ 0], 3 ); michael@0: d = md4gg(d, a, b, c, x[i+ 4], 5 ); michael@0: c = md4gg(c, d, a, b, x[i+ 8], 9 ); michael@0: b = md4gg(b, c, d, a, x[i+12], 13); michael@0: a = md4gg(a, b, c, d, x[i+ 1], 3 ); michael@0: d = md4gg(d, a, b, c, x[i+ 5], 5 ); michael@0: c = md4gg(c, d, a, b, x[i+ 9], 9 ); michael@0: b = md4gg(b, c, d, a, x[i+13], 13); michael@0: a = md4gg(a, b, c, d, x[i+ 2], 3 ); michael@0: d = md4gg(d, a, b, c, x[i+ 6], 5 ); michael@0: c = md4gg(c, d, a, b, x[i+10], 9 ); michael@0: b = md4gg(b, c, d, a, x[i+14], 13); michael@0: a = md4gg(a, b, c, d, x[i+ 3], 3 ); michael@0: d = md4gg(d, a, b, c, x[i+ 7], 5 ); michael@0: c = md4gg(c, d, a, b, x[i+11], 9 ); michael@0: b = md4gg(b, c, d, a, x[i+15], 13); michael@0: michael@0: a = md4hh(a, b, c, d, x[i+ 0], 3 ); michael@0: d = md4hh(d, a, b, c, x[i+ 8], 9 ); michael@0: c = md4hh(c, d, a, b, x[i+ 4], 11); michael@0: b = md4hh(b, c, d, a, x[i+12], 15); michael@0: a = md4hh(a, b, c, d, x[i+ 2], 3 ); michael@0: d = md4hh(d, a, b, c, x[i+10], 9 ); michael@0: c = md4hh(c, d, a, b, x[i+ 6], 11); michael@0: b = md4hh(b, c, d, a, x[i+14], 15); michael@0: a = md4hh(a, b, c, d, x[i+ 1], 3 ); michael@0: d = md4hh(d, a, b, c, x[i+ 9], 9 ); michael@0: c = md4hh(c, d, a, b, x[i+ 5], 11); michael@0: b = md4hh(b, c, d, a, x[i+13], 15); michael@0: a = md4hh(a, b, c, d, x[i+ 3], 3 ); michael@0: d = md4hh(d, a, b, c, x[i+11], 9 ); michael@0: c = md4hh(c, d, a, b, x[i+ 7], 11); michael@0: b = md4hh(b, c, d, a, x[i+15], 15); michael@0: michael@0: a = safeadd(a, olda); michael@0: b = safeadd(b, oldb); michael@0: c = safeadd(c, oldc); michael@0: d = safeadd(d, oldd); michael@0: michael@0: } michael@0: return Array(a, b, c, d); michael@0: michael@0: } michael@0: michael@0: /* michael@0: * These functions implement the basic operation for each round of the michael@0: * algorithm. michael@0: */ michael@0: function md4cmn(q, a, b, x, s, t) michael@0: { michael@0: return safeadd(rol(safeadd(safeadd(a, q), safeadd(x, t)), s), b); michael@0: } michael@0: function md4ff(a, b, c, d, x, s) michael@0: { michael@0: return md4cmn((b & c) | ((~b) & d), a, 0, x, s, 0); michael@0: } michael@0: function md4gg(a, b, c, d, x, s) michael@0: { michael@0: return md4cmn((b & c) | (b & d) | (c & d), a, 0, x, s, 1518500249); michael@0: } michael@0: function md4hh(a, b, c, d, x, s) michael@0: { michael@0: return md4cmn(b ^ c ^ d, a, 0, x, s, 1859775393); michael@0: } michael@0: michael@0: /* michael@0: * Calculate the HMAC-MD4, of a key and some data michael@0: */ michael@0: function corehmacmd4(key, data) michael@0: { michael@0: var bkey = str2binl(key); michael@0: if(bkey.length > 16) bkey = coremd4(bkey, key.length * chrsz); michael@0: michael@0: var ipad = Array(16), opad = Array(16); michael@0: for(var i = 0; i < 16; i++) michael@0: { michael@0: ipad[i] = bkey[i] ^ 0x36363636; michael@0: opad[i] = bkey[i] ^ 0x5C5C5C5C; michael@0: } michael@0: michael@0: var hash = coremd4(ipad.concat(str2binl(data)), 512 + data.length * chrsz); michael@0: return coremd4(opad.concat(hash), 512 + 128); michael@0: } michael@0: michael@0: /* michael@0: * Add integers, wrapping at 2^32. This uses 16-bit operations internally michael@0: * to work around bugs in some JS interpreters. michael@0: */ michael@0: function safeadd(x, y) michael@0: { michael@0: var lsw = (x & 0xFFFF) + (y & 0xFFFF); michael@0: var msw = (x >> 16) + (y >> 16) + (lsw >> 16); michael@0: return (msw << 16) | (lsw & 0xFFFF); michael@0: } michael@0: michael@0: /* michael@0: * Bitwise rotate a 32-bit number to the left. michael@0: */ michael@0: function rol(num, cnt) michael@0: { michael@0: return (num << cnt) | (num >>> (32 - cnt)); michael@0: } michael@0: michael@0: /* michael@0: * Convert a string to an array of little-endian words michael@0: * If chrsz is ASCII, characters >255 have their hi-byte silently ignored. michael@0: */ michael@0: function str2binl(str) michael@0: { michael@0: var bin = Array(); michael@0: var mask = (1 << chrsz) - 1; michael@0: for(var i = 0; i < str.length * chrsz; i += chrsz) michael@0: bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (i%32); michael@0: return bin; michael@0: } michael@0: michael@0: /* michael@0: * Convert an array of little-endian words to a string michael@0: */ michael@0: function binl2str(bin) michael@0: { michael@0: var str = ""; michael@0: var mask = (1 << chrsz) - 1; michael@0: for(var i = 0; i < bin.length * 32; i += chrsz) michael@0: str += String.fromCharCode((bin[i>>5] >>> (i % 32)) & mask); michael@0: return str; michael@0: } michael@0: michael@0: /* michael@0: * Convert an array of little-endian words to a hex string. michael@0: */ michael@0: function binl2hex(binarray) michael@0: { michael@0: var hextab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; michael@0: var str = ""; michael@0: for(var i = 0; i < binarray.length * 4; i++) michael@0: { michael@0: str += hextab.charAt((binarray[i>>2] >> ((i%4)*8+4)) & 0xF) + michael@0: hextab.charAt((binarray[i>>2] >> ((i%4)*8 )) & 0xF); michael@0: } michael@0: return str; michael@0: } michael@0: michael@0: /* michael@0: * Convert an array of little-endian words to a base-64 string michael@0: */ michael@0: function binl2b64(binarray) michael@0: { michael@0: var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; michael@0: var str = ""; michael@0: for(var i = 0; i < binarray.length * 4; i += 3) michael@0: { michael@0: var triplet = (((binarray[i >> 2] >> 8 * ( i %4)) & 0xFF) << 16) michael@0: | (((binarray[i+1 >> 2] >> 8 * ((i+1)%4)) & 0xFF) << 8 ) michael@0: | ((binarray[i+2 >> 2] >> 8 * ((i+2)%4)) & 0xFF); michael@0: for(var j = 0; j < 4; j++) michael@0: { michael@0: if(i * 8 + j * 6 > binarray.length * 32) str += b64pad; michael@0: else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F); michael@0: } michael@0: } michael@0: return str; michael@0: }