src/tizen/hashes/sha1.js

Wed, 31 Jul 2013 19:48:00 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Jul 2013 19:48:00 +0200
changeset 14
d1b294812560
permissions
-rw-r--r--

Introduce port to the Tizen OS.

michael@14 1 /*
michael@14 2 * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined
michael@14 3 * in FIPS PUB 180-1
michael@14 4 * Version 2.1 Copyright Paul Johnston 2000 - 2002.
michael@14 5 * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
michael@14 6 * Distributed under the BSD License
michael@14 7 * See http://pajhome.org.uk/crypt/md5 for details.
michael@14 8 */
michael@14 9
michael@14 10 /*
michael@14 11 * Configurable variables. You may need to tweak these to be compatible with
michael@14 12 * the server-side, but the defaults work in most cases.
michael@14 13 */
michael@14 14 var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */
michael@14 15 var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */
michael@14 16 var chrsz = 8; /* bits per input character. 8 - ASCII; 16 - Unicode */
michael@14 17
michael@14 18 /*
michael@14 19 * These are the functions you'll usually want to call
michael@14 20 * They take string arguments and return either hex or base-64 encoded strings
michael@14 21 */
michael@14 22 function hexsha1(s){return binb2hex(coresha1(str2binb(s),s.length * chrsz));}
michael@14 23 function b64sha1(s){return binb2b64(coresha1(str2binb(s),s.length * chrsz));}
michael@14 24 function strsha1(s){return binb2str(coresha1(str2binb(s),s.length * chrsz));}
michael@14 25 function hexhmacsha1(key, data){ return binb2hex(corehmacsha1(key, data));}
michael@14 26 function b64hmacsha1(key, data){ return binb2b64(corehmacsha1(key, data));}
michael@14 27 function strhmacsha1(key, data){ return binb2str(corehmacsha1(key, data));}
michael@14 28
michael@14 29 /*
michael@14 30 * Perform a simple self-test to see if the VM is working
michael@14 31 */
michael@14 32 function sha1vmtest()
michael@14 33 {
michael@14 34 return hexsha1("abc") == "a9993e364706816aba3e25717850c26c9cd0d89d";
michael@14 35 }
michael@14 36
michael@14 37 /*
michael@14 38 * Calculate the SHA-1 of an array of big-endian words, and a bit length
michael@14 39 */
michael@14 40 function coresha1(x, len)
michael@14 41 {
michael@14 42 /* append padding */
michael@14 43 x[len >> 5] |= 0x80 << (24 - len % 32);
michael@14 44 x[((len + 64 >> 9) << 4) + 15] = len;
michael@14 45
michael@14 46 var w = Array(80);
michael@14 47 var a = 1732584193;
michael@14 48 var b = -271733879;
michael@14 49 var c = -1732584194;
michael@14 50 var d = 271733878;
michael@14 51 var e = -1009589776;
michael@14 52
michael@14 53 for(var i = 0; i < x.length; i += 16)
michael@14 54 {
michael@14 55 var olda = a;
michael@14 56 var oldb = b;
michael@14 57 var oldc = c;
michael@14 58 var oldd = d;
michael@14 59 var olde = e;
michael@14 60
michael@14 61 for(var j = 0; j < 80; j++)
michael@14 62 {
michael@14 63 if(j < 16) w[j] = x[i + j];
michael@14 64 else w[j] = rol(w[j-3] ^ w[j-8] ^ w[j-14] ^ w[j-16], 1);
michael@14 65 var t = safeadd(safeadd(rol(a, 5), sha1ft(j, b, c, d)),
michael@14 66 safeadd(safeadd(e, w[j]), sha1kt(j)));
michael@14 67 e = d;
michael@14 68 d = c;
michael@14 69 c = rol(b, 30);
michael@14 70 b = a;
michael@14 71 a = t;
michael@14 72 }
michael@14 73
michael@14 74 a = safeadd(a, olda);
michael@14 75 b = safeadd(b, oldb);
michael@14 76 c = safeadd(c, oldc);
michael@14 77 d = safeadd(d, oldd);
michael@14 78 e = safeadd(e, olde);
michael@14 79 }
michael@14 80 return Array(a, b, c, d, e);
michael@14 81
michael@14 82 }
michael@14 83
michael@14 84 /*
michael@14 85 * Perform the appropriate triplet combination function for the current
michael@14 86 * iteration
michael@14 87 */
michael@14 88 function sha1ft(t, b, c, d)
michael@14 89 {
michael@14 90 if(t < 20) return (b & c) | ((~b) & d);
michael@14 91 if(t < 40) return b ^ c ^ d;
michael@14 92 if(t < 60) return (b & c) | (b & d) | (c & d);
michael@14 93 return b ^ c ^ d;
michael@14 94 }
michael@14 95
michael@14 96 /*
michael@14 97 * Determine the appropriate additive constant for the current iteration
michael@14 98 */
michael@14 99 function sha1kt(t)
michael@14 100 {
michael@14 101 return (t < 20) ? 1518500249 : (t < 40) ? 1859775393 :
michael@14 102 (t < 60) ? -1894007588 : -899497514;
michael@14 103 }
michael@14 104
michael@14 105 /*
michael@14 106 * Calculate the HMAC-SHA1 of a key and some data
michael@14 107 */
michael@14 108 function corehmacsha1(key, data)
michael@14 109 {
michael@14 110 var bkey = str2binb(key);
michael@14 111 if(bkey.length > 16) bkey = coresha1(bkey, key.length * chrsz);
michael@14 112
michael@14 113 var ipad = Array(16), opad = Array(16);
michael@14 114 for(var i = 0; i < 16; i++)
michael@14 115 {
michael@14 116 ipad[i] = bkey[i] ^ 0x36363636;
michael@14 117 opad[i] = bkey[i] ^ 0x5C5C5C5C;
michael@14 118 }
michael@14 119
michael@14 120 var hash = coresha1(ipad.concat(str2binb(data)), 512 + data.length * chrsz);
michael@14 121 return coresha1(opad.concat(hash), 512 + 160);
michael@14 122 }
michael@14 123
michael@14 124 /*
michael@14 125 * Add integers, wrapping at 2^32. This uses 16-bit operations internally
michael@14 126 * to work around bugs in some JS interpreters.
michael@14 127 */
michael@14 128 function safeadd(x, y)
michael@14 129 {
michael@14 130 var lsw = (x & 0xFFFF) + (y & 0xFFFF);
michael@14 131 var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
michael@14 132 return (msw << 16) | (lsw & 0xFFFF);
michael@14 133 }
michael@14 134
michael@14 135 /*
michael@14 136 * Bitwise rotate a 32-bit number to the left.
michael@14 137 */
michael@14 138 function rol(num, cnt)
michael@14 139 {
michael@14 140 return (num << cnt) | (num >>> (32 - cnt));
michael@14 141 }
michael@14 142
michael@14 143 /*
michael@14 144 * Convert an 8-bit or 16-bit string to an array of big-endian words
michael@14 145 * In 8-bit function, characters >255 have their hi-byte silently ignored.
michael@14 146 */
michael@14 147 function str2binb(str)
michael@14 148 {
michael@14 149 var bin = Array();
michael@14 150 var mask = (1 << chrsz) - 1;
michael@14 151 for(var i = 0; i < str.length * chrsz; i += chrsz)
michael@14 152 bin[i>>5] |= (str.charCodeAt(i / chrsz) & mask) << (24 - i%32);
michael@14 153 return bin;
michael@14 154 }
michael@14 155
michael@14 156 /*
michael@14 157 * Convert an array of big-endian words to a string
michael@14 158 */
michael@14 159 function binb2str(bin)
michael@14 160 {
michael@14 161 var str = "";
michael@14 162 var mask = (1 << chrsz) - 1;
michael@14 163 for(var i = 0; i < bin.length * 32; i += chrsz)
michael@14 164 str += String.fromCharCode((bin[i>>5] >>> (24 - i%32)) & mask);
michael@14 165 return str;
michael@14 166 }
michael@14 167
michael@14 168 /*
michael@14 169 * Convert an array of big-endian words to a hex string.
michael@14 170 */
michael@14 171 function binb2hex(binarray)
michael@14 172 {
michael@14 173 var hextab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef";
michael@14 174 var str = "";
michael@14 175 for(var i = 0; i < binarray.length * 4; i++)
michael@14 176 {
michael@14 177 str += hextab.charAt((binarray[i>>2] >> ((3 - i%4)*8+4)) & 0xF) +
michael@14 178 hextab.charAt((binarray[i>>2] >> ((3 - i%4)*8 )) & 0xF);
michael@14 179 }
michael@14 180 return str;
michael@14 181 }
michael@14 182
michael@14 183 /*
michael@14 184 * Convert an array of big-endian words to a base-64 string
michael@14 185 */
michael@14 186 function binb2b64(binarray)
michael@14 187 {
michael@14 188 var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
michael@14 189 var str = "";
michael@14 190 for(var i = 0; i < binarray.length * 4; i += 3)
michael@14 191 {
michael@14 192 var triplet = (((binarray[i >> 2] >> 8 * (3 - i %4)) & 0xFF) << 16)
michael@14 193 | (((binarray[i+1 >> 2] >> 8 * (3 - (i+1)%4)) & 0xFF) << 8 )
michael@14 194 | ((binarray[i+2 >> 2] >> 8 * (3 - (i+2)%4)) & 0xFF);
michael@14 195 for(var j = 0; j < 4; j++)
michael@14 196 {
michael@14 197 if(i * 8 + j * 6 > binarray.length * 32) str += b64pad;
michael@14 198 else str += tab.charAt((triplet >> 6*(3-j)) & 0x3F);
michael@14 199 }
michael@14 200 }
michael@14 201 return str;
michael@14 202 }

mercurial