michael@14: /* michael@14: * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined michael@14: * in FIPS PUB 180-1 michael@14: * Version 2.1 Copyright Paul Johnston 2000 - 2002. michael@14: * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet michael@14: * Distributed under the BSD License michael@14: * See http://pajhome.org.uk/crypt/md5 for details. michael@14: */ michael@14: michael@14: /* michael@14: * Configurable variables. You may need to tweak these to be compatible with michael@14: * the server-side, but the defaults work in most cases. michael@14: */ michael@14: var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */ michael@14: var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */ michael@14: var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */ michael@14: michael@14: /* michael@14: * These are the functions you'll usually want to call michael@14: * They take string arguments and return either hex or base-64 encoded strings michael@14: */ michael@14: function hexsha1(s){return binb2hex(coresha1(str2binb(s),s.length * chrsz));} michael@14: function b64sha1(s){return binb2b64(coresha1(str2binb(s),s.length * chrsz));} michael@14: function strsha1(s){return binb2str(coresha1(str2binb(s),s.length * chrsz));} michael@14: function hexhmacsha1(key, data){ return binb2hex(corehmacsha1(key, data));} michael@14: function b64hmacsha1(key, data){ return binb2b64(corehmacsha1(key, data));} michael@14: function strhmacsha1(key, data){ return binb2str(corehmacsha1(key, data));} michael@14: michael@14: /* michael@14: * Perform a simple self-test to see if the VM is working michael@14: */ michael@14: function sha1vmtest() michael@14: { michael@14: return hexsha1("abc") == "a9993e364706816aba3e25717850c26c9cd0d89d"; michael@14: } michael@14: michael@14: /* michael@14: * Calculate the SHA-1 of an array of big-endian words, and a bit length michael@14: */ michael@14: function coresha1(x, len) michael@14: { michael@14: /* append padding */ michael@14: x[len >> 5] |= 0x80 << (24 - len % 32); michael@14: x[((len + 64 >> 9) << 4) + 15] = len; michael@14: michael@14: var w = Array(80); michael@14: var a = 1732584193; michael@14: var b = -271733879; michael@14: var c = -1732584194; michael@14: var d = 271733878; michael@14: var e = -1009589776; michael@14: michael@14: for(var i = 0; i < x.length; i += 16) michael@14: { michael@14: var olda = a; michael@14: var oldb = b; michael@14: var oldc = c; michael@14: var oldd = d; michael@14: var olde = e; michael@14: michael@14: for(var j = 0; j < 80; j++) michael@14: { michael@14: if(j < 16) w[j] = x[i + j]; michael@14: else w[j] = rol(w[j-3] ^ w[j-8] ^ w[j-14] ^ w[j-16], 1); michael@14: var t = safeadd(safeadd(rol(a, 5), sha1ft(j, b, c, d)), michael@14: safeadd(safeadd(e, w[j]), sha1kt(j))); michael@14: e = d; michael@14: d = c; michael@14: c = rol(b, 30); michael@14: b = a; michael@14: a = t; michael@14: } michael@14: michael@14: a = safeadd(a, olda); michael@14: b = safeadd(b, oldb); michael@14: c = safeadd(c, oldc); michael@14: d = safeadd(d, oldd); michael@14: e = safeadd(e, olde); michael@14: } michael@14: return Array(a, b, c, d, e); michael@14: michael@14: } michael@14: michael@14: /* michael@14: * Perform the appropriate triplet combination function for the current michael@14: * iteration michael@14: */ michael@14: function sha1ft(t, b, c, d) michael@14: { michael@14: if(t < 20) return (b & c) | ((~b) & d); michael@14: if(t < 40) return b ^ c ^ d; michael@14: if(t < 60) return (b & c) | (b & d) | (c & d); michael@14: return b ^ c ^ d; michael@14: } michael@14: michael@14: /* michael@14: * Determine the appropriate additive constant for the current iteration michael@14: */ michael@14: function sha1kt(t) michael@14: { michael@14: return (t < 20) ? 1518500249 : (t < 40) ? 1859775393 : michael@14: (t < 60) ? -1894007588 : -899497514; michael@14: } michael@14: michael@14: /* michael@14: * Calculate the HMAC-SHA1 of a key and some data michael@14: */ michael@14: function corehmacsha1(key, data) michael@14: { michael@14: var bkey = str2binb(key); michael@14: if(bkey.length > 16) bkey = coresha1(bkey, key.length * chrsz); michael@14: michael@14: var ipad = Array(16), opad = Array(16); michael@14: for(var i = 0; i < 16; i++) michael@14: { michael@14: ipad[i] = bkey[i] ^ 0x36363636; michael@14: opad[i] = bkey[i] ^ 0x5C5C5C5C; michael@14: } michael@14: michael@14: var hash = coresha1(ipad.concat(str2binb(data)), 512 + data.length * chrsz); michael@14: return coresha1(opad.concat(hash), 512 + 160); michael@14: } michael@14: michael@14: /* michael@14: * Add integers, wrapping at 2^32. This uses 16-bit operations internally michael@14: * to work around bugs in some JS interpreters. michael@14: */ michael@14: function safeadd(x, y) michael@14: { michael@14: var lsw = (x & 0xFFFF) + (y & 0xFFFF); michael@14: var msw = (x >> 16) + (y >> 16) + (lsw >> 16); michael@14: return (msw << 16) | (lsw & 0xFFFF); michael@14: } michael@14: michael@14: /* michael@14: * Bitwise rotate a 32-bit number to the left. michael@14: */ michael@14: function rol(num, cnt) michael@14: { michael@14: return (num << cnt) | (num >>> (32 - cnt)); michael@14: } michael@14: michael@14: /* michael@14: * Convert an 8-bit or 16-bit string to an array of big-endian words michael@14: * In 8-bit function, characters >255 have their hi-byte silently ignored. michael@14: */ michael@14: function str2binb(str) michael@14: { michael@14: var bin = Array(); michael@14: var mask = (1 << chrsz) - 1; michael@14: for(var i = 0; i < str.length * chrsz; i += chrsz) michael@14: bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (24 - i%32); michael@14: return bin; michael@14: } michael@14: michael@14: /* michael@14: * Convert an array of big-endian words to a string michael@14: */ michael@14: function binb2str(bin) michael@14: { michael@14: var str = ""; michael@14: var mask = (1 << chrsz) - 1; michael@14: for(var i = 0; i < bin.length * 32; i += chrsz) michael@14: str += String.fromCharCode((bin[i>>5] >>> (24 - i%32)) & mask); michael@14: return str; michael@14: } michael@14: michael@14: /* michael@14: * Convert an array of big-endian words to a hex string. michael@14: */ michael@14: function binb2hex(binarray) michael@14: { michael@14: var hextab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; michael@14: var str = ""; michael@14: for(var i = 0; i < binarray.length * 4; i++) michael@14: { michael@14: str += hextab.charAt((binarray[i>>2] >> ((3 - i%4)*8+4)) & 0xF) + michael@14: hextab.charAt((binarray[i>>2] >> ((3 - i%4)*8 )) & 0xF); michael@14: } michael@14: return str; michael@14: } michael@14: michael@14: /* michael@14: * Convert an array of big-endian words to a base-64 string michael@14: */ michael@14: function binb2b64(binarray) michael@14: { michael@14: var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; michael@14: var str = ""; michael@14: for(var i = 0; i < binarray.length * 4; i += 3) michael@14: { michael@14: var triplet = (((binarray[i >> 2] >> 8 * (3 - i %4)) & 0xFF) << 16) michael@14: | (((binarray[i+1 >> 2] >> 8 * (3 - (i+1)%4)) & 0xFF) << 8 ) michael@14: | ((binarray[i+2 >> 2] >> 8 * (3 - (i+2)%4)) & 0xFF); michael@14: for(var j = 0; j < 4; j++) michael@14: { michael@14: if(i * 8 + j * 6 > binarray.length * 32) str += b64pad; michael@14: else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F); michael@14: } michael@14: } michael@14: return str; michael@14: }