汇联通执法队后台管理系统
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

sha-512.js 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499
  1. /*
  2. * A JavaScript implementation of the Secure Hash Algorithm, SHA-512, as defined
  3. * in FIPS 180-2
  4. * Version 2.2 Copyright Anonymous Contributor, Paul Johnston 2000 - 2009.
  5. * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
  6. * Distributed under the BSD License
  7. * See http://pajhome.org.uk/crypt/md5 for details.
  8. */
  9. /*
  10. * Configurable variables. You may need to tweak these to be compatible with
  11. * the server-side, but the defaults work in most cases.
  12. */
  13. var hexcase = 0; /* hex output format. 0 - lowercase; 1 - uppercase */
  14. var b64pad = ""; /* base-64 pad character. "=" for strict RFC compliance */
  15. /*
  16. * These are the functions you'll usually want to call
  17. * They take string arguments and return either hex or base-64 encoded strings
  18. */
  19. function hex_sha512(s) { return rstr2hex(rstr_sha512(str2rstr_utf8(s))); }
  20. function b64_sha512(s) { return rstr2b64(rstr_sha512(str2rstr_utf8(s))); }
  21. function any_sha512(s, e) { return rstr2any(rstr_sha512(str2rstr_utf8(s)), e);}
  22. function hex_hmac_sha512(k, d)
  23. { return rstr2hex(rstr_hmac_sha512(str2rstr_utf8(k), str2rstr_utf8(d))); }
  24. function b64_hmac_sha512(k, d)
  25. { return rstr2b64(rstr_hmac_sha512(str2rstr_utf8(k), str2rstr_utf8(d))); }
  26. function any_hmac_sha512(k, d, e)
  27. { return rstr2any(rstr_hmac_sha512(str2rstr_utf8(k), str2rstr_utf8(d)), e);}
  28. /*
  29. * Perform a simple self-test to see if the VM is working
  30. */
  31. function sha512_vm_test()
  32. {
  33. return hex_sha512("abc").toLowerCase() ==
  34. "ddaf35a193617abacc417349ae20413112e6fa4e89a97ea20a9eeee64b55d39a" +
  35. "2192992a274fc1a836ba3c23a3feebbd454d4423643ce80e2a9ac94fa54ca49f";
  36. }
  37. /*
  38. * Calculate the SHA-512 of a raw string
  39. */
  40. function rstr_sha512(s)
  41. {
  42. return binb2rstr(binb_sha512(rstr2binb(s), s.length * 8));
  43. }
  44. /*
  45. * Calculate the HMAC-SHA-512 of a key and some data (raw strings)
  46. */
  47. function rstr_hmac_sha512(key, data)
  48. {
  49. var bkey = rstr2binb(key);
  50. if(bkey.length > 32) bkey = binb_sha512(bkey, key.length * 8);
  51. var ipad = Array(32), opad = Array(32);
  52. for(var i = 0; i < 32; i++)
  53. {
  54. ipad[i] = bkey[i] ^ 0x36363636;
  55. opad[i] = bkey[i] ^ 0x5C5C5C5C;
  56. }
  57. var hash = binb_sha512(ipad.concat(rstr2binb(data)), 1024 + data.length * 8);
  58. return binb2rstr(binb_sha512(opad.concat(hash), 1024 + 512));
  59. }
  60. /*
  61. * Convert a raw string to a hex string
  62. */
  63. function rstr2hex(input)
  64. {
  65. try { hexcase } catch(e) { hexcase=0; }
  66. var hex_tab = hexcase ? "0123456789ABCDEF" : "0123456789abcdef";
  67. var output = "";
  68. var x;
  69. for(var i = 0; i < input.length; i++)
  70. {
  71. x = input.charCodeAt(i);
  72. output += hex_tab.charAt((x >>> 4) & 0x0F)
  73. + hex_tab.charAt( x & 0x0F);
  74. }
  75. return output;
  76. }
  77. /*
  78. * Convert a raw string to a base-64 string
  79. */
  80. function rstr2b64(input)
  81. {
  82. try { b64pad } catch(e) { b64pad=''; }
  83. var tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  84. var output = "";
  85. var len = input.length;
  86. for(var i = 0; i < len; i += 3)
  87. {
  88. var triplet = (input.charCodeAt(i) << 16)
  89. | (i + 1 < len ? input.charCodeAt(i+1) << 8 : 0)
  90. | (i + 2 < len ? input.charCodeAt(i+2) : 0);
  91. for(var j = 0; j < 4; j++)
  92. {
  93. if(i * 8 + j * 6 > input.length * 8) output += b64pad;
  94. else output += tab.charAt((triplet >>> 6*(3-j)) & 0x3F);
  95. }
  96. }
  97. return output;
  98. }
  99. /*
  100. * Convert a raw string to an arbitrary string encoding
  101. */
  102. function rstr2any(input, encoding)
  103. {
  104. var divisor = encoding.length;
  105. var i, j, q, x, quotient;
  106. /* Convert to an array of 16-bit big-endian values, forming the dividend */
  107. var dividend = Array(Math.ceil(input.length / 2));
  108. for(i = 0; i < dividend.length; i++)
  109. {
  110. dividend[i] = (input.charCodeAt(i * 2) << 8) | input.charCodeAt(i * 2 + 1);
  111. }
  112. /*
  113. * Repeatedly perform a long division. The binary array forms the dividend,
  114. * the length of the encoding is the divisor. Once computed, the quotient
  115. * forms the dividend for the next step. All remainders are stored for later
  116. * use.
  117. */
  118. var full_length = Math.ceil(input.length * 8 /
  119. (Math.log(encoding.length) / Math.log(2)));
  120. var remainders = Array(full_length);
  121. for(j = 0; j < full_length; j++)
  122. {
  123. quotient = Array();
  124. x = 0;
  125. for(i = 0; i < dividend.length; i++)
  126. {
  127. x = (x << 16) + dividend[i];
  128. q = Math.floor(x / divisor);
  129. x -= q * divisor;
  130. if(quotient.length > 0 || q > 0)
  131. quotient[quotient.length] = q;
  132. }
  133. remainders[j] = x;
  134. dividend = quotient;
  135. }
  136. /* Convert the remainders to the output string */
  137. var output = "";
  138. for(i = remainders.length - 1; i >= 0; i--)
  139. output += encoding.charAt(remainders[i]);
  140. return output;
  141. }
  142. /*
  143. * Encode a string as utf-8.
  144. * For efficiency, this assumes the input is valid utf-16.
  145. */
  146. function str2rstr_utf8(input)
  147. {
  148. var output = "";
  149. var i = -1;
  150. var x, y;
  151. while(++i < input.length)
  152. {
  153. /* Decode utf-16 surrogate pairs */
  154. x = input.charCodeAt(i);
  155. y = i + 1 < input.length ? input.charCodeAt(i + 1) : 0;
  156. if(0xD800 <= x && x <= 0xDBFF && 0xDC00 <= y && y <= 0xDFFF)
  157. {
  158. x = 0x10000 + ((x & 0x03FF) << 10) + (y & 0x03FF);
  159. i++;
  160. }
  161. /* Encode output as utf-8 */
  162. if(x <= 0x7F)
  163. output += String.fromCharCode(x);
  164. else if(x <= 0x7FF)
  165. output += String.fromCharCode(0xC0 | ((x >>> 6 ) & 0x1F),
  166. 0x80 | ( x & 0x3F));
  167. else if(x <= 0xFFFF)
  168. output += String.fromCharCode(0xE0 | ((x >>> 12) & 0x0F),
  169. 0x80 | ((x >>> 6 ) & 0x3F),
  170. 0x80 | ( x & 0x3F));
  171. else if(x <= 0x1FFFFF)
  172. output += String.fromCharCode(0xF0 | ((x >>> 18) & 0x07),
  173. 0x80 | ((x >>> 12) & 0x3F),
  174. 0x80 | ((x >>> 6 ) & 0x3F),
  175. 0x80 | ( x & 0x3F));
  176. }
  177. return output;
  178. }
  179. /*
  180. * Encode a string as utf-16
  181. */
  182. function str2rstr_utf16le(input)
  183. {
  184. var output = "";
  185. for(var i = 0; i < input.length; i++)
  186. output += String.fromCharCode( input.charCodeAt(i) & 0xFF,
  187. (input.charCodeAt(i) >>> 8) & 0xFF);
  188. return output;
  189. }
  190. function str2rstr_utf16be(input)
  191. {
  192. var output = "";
  193. for(var i = 0; i < input.length; i++)
  194. output += String.fromCharCode((input.charCodeAt(i) >>> 8) & 0xFF,
  195. input.charCodeAt(i) & 0xFF);
  196. return output;
  197. }
  198. /*
  199. * Convert a raw string to an array of big-endian words
  200. * Characters >255 have their high-byte silently ignored.
  201. */
  202. function rstr2binb(input)
  203. {
  204. var output = Array(input.length >> 2);
  205. for(var i = 0; i < output.length; i++)
  206. output[i] = 0;
  207. for(var i = 0; i < input.length * 8; i += 8)
  208. output[i>>5] |= (input.charCodeAt(i / 8) & 0xFF) << (24 - i % 32);
  209. return output;
  210. }
  211. /*
  212. * Convert an array of big-endian words to a string
  213. */
  214. function binb2rstr(input)
  215. {
  216. var output = "";
  217. for(var i = 0; i < input.length * 32; i += 8)
  218. output += String.fromCharCode((input[i>>5] >>> (24 - i % 32)) & 0xFF);
  219. return output;
  220. }
  221. /*
  222. * Calculate the SHA-512 of an array of big-endian dwords, and a bit length
  223. */
  224. var sha512_k;
  225. function binb_sha512(x, len)
  226. {
  227. if(sha512_k == undefined)
  228. {
  229. //SHA512 constants
  230. sha512_k = new Array(
  231. new int64(0x428a2f98, -685199838), new int64(0x71374491, 0x23ef65cd),
  232. new int64(-1245643825, -330482897), new int64(-373957723, -2121671748),
  233. new int64(0x3956c25b, -213338824), new int64(0x59f111f1, -1241133031),
  234. new int64(-1841331548, -1357295717), new int64(-1424204075, -630357736),
  235. new int64(-670586216, -1560083902), new int64(0x12835b01, 0x45706fbe),
  236. new int64(0x243185be, 0x4ee4b28c), new int64(0x550c7dc3, -704662302),
  237. new int64(0x72be5d74, -226784913), new int64(-2132889090, 0x3b1696b1),
  238. new int64(-1680079193, 0x25c71235), new int64(-1046744716, -815192428),
  239. new int64(-459576895, -1628353838), new int64(-272742522, 0x384f25e3),
  240. new int64(0xfc19dc6, -1953704523), new int64(0x240ca1cc, 0x77ac9c65),
  241. new int64(0x2de92c6f, 0x592b0275), new int64(0x4a7484aa, 0x6ea6e483),
  242. new int64(0x5cb0a9dc, -1119749164), new int64(0x76f988da, -2096016459),
  243. new int64(-1740746414, -295247957), new int64(-1473132947, 0x2db43210),
  244. new int64(-1341970488, -1728372417), new int64(-1084653625, -1091629340),
  245. new int64(-958395405, 0x3da88fc2), new int64(-710438585, -1828018395),
  246. new int64(0x6ca6351, -536640913), new int64(0x14292967, 0xa0e6e70),
  247. new int64(0x27b70a85, 0x46d22ffc), new int64(0x2e1b2138, 0x5c26c926),
  248. new int64(0x4d2c6dfc, 0x5ac42aed), new int64(0x53380d13, -1651133473),
  249. new int64(0x650a7354, -1951439906), new int64(0x766a0abb, 0x3c77b2a8),
  250. new int64(-2117940946, 0x47edaee6), new int64(-1838011259, 0x1482353b),
  251. new int64(-1564481375, 0x4cf10364), new int64(-1474664885, -1136513023),
  252. new int64(-1035236496, -789014639), new int64(-949202525, 0x654be30),
  253. new int64(-778901479, -688958952), new int64(-694614492, 0x5565a910),
  254. new int64(-200395387, 0x5771202a), new int64(0x106aa070, 0x32bbd1b8),
  255. new int64(0x19a4c116, -1194143544), new int64(0x1e376c08, 0x5141ab53),
  256. new int64(0x2748774c, -544281703), new int64(0x34b0bcb5, -509917016),
  257. new int64(0x391c0cb3, -976659869), new int64(0x4ed8aa4a, -482243893),
  258. new int64(0x5b9cca4f, 0x7763e373), new int64(0x682e6ff3, -692930397),
  259. new int64(0x748f82ee, 0x5defb2fc), new int64(0x78a5636f, 0x43172f60),
  260. new int64(-2067236844, -1578062990), new int64(-1933114872, 0x1a6439ec),
  261. new int64(-1866530822, 0x23631e28), new int64(-1538233109, -561857047),
  262. new int64(-1090935817, -1295615723), new int64(-965641998, -479046869),
  263. new int64(-903397682, -366583396), new int64(-779700025, 0x21c0c207),
  264. new int64(-354779690, -840897762), new int64(-176337025, -294727304),
  265. new int64(0x6f067aa, 0x72176fba), new int64(0xa637dc5, -1563912026),
  266. new int64(0x113f9804, -1090974290), new int64(0x1b710b35, 0x131c471b),
  267. new int64(0x28db77f5, 0x23047d84), new int64(0x32caab7b, 0x40c72493),
  268. new int64(0x3c9ebe0a, 0x15c9bebc), new int64(0x431d67c4, -1676669620),
  269. new int64(0x4cc5d4be, -885112138), new int64(0x597f299c, -60457430),
  270. new int64(0x5fcb6fab, 0x3ad6faec), new int64(0x6c44198c, 0x4a475817));
  271. }
  272. //Initial hash values
  273. var H = new Array(
  274. new int64(0x6a09e667, -205731576),
  275. new int64(-1150833019, -2067093701),
  276. new int64(0x3c6ef372, -23791573),
  277. new int64(-1521486534, 0x5f1d36f1),
  278. new int64(0x510e527f, -1377402159),
  279. new int64(-1694144372, 0x2b3e6c1f),
  280. new int64(0x1f83d9ab, -79577749),
  281. new int64(0x5be0cd19, 0x137e2179));
  282. var T1 = new int64(0, 0),
  283. T2 = new int64(0, 0),
  284. a = new int64(0,0),
  285. b = new int64(0,0),
  286. c = new int64(0,0),
  287. d = new int64(0,0),
  288. e = new int64(0,0),
  289. f = new int64(0,0),
  290. g = new int64(0,0),
  291. h = new int64(0,0),
  292. //Temporary variables not specified by the document
  293. s0 = new int64(0, 0),
  294. s1 = new int64(0, 0),
  295. Ch = new int64(0, 0),
  296. Maj = new int64(0, 0),
  297. r1 = new int64(0, 0),
  298. r2 = new int64(0, 0),
  299. r3 = new int64(0, 0);
  300. var j, i;
  301. var W = new Array(80);
  302. for(i=0; i<80; i++)
  303. W[i] = new int64(0, 0);
  304. // append padding to the source string. The format is described in the FIPS.
  305. x[len >> 5] |= 0x80 << (24 - (len & 0x1f));
  306. x[((len + 128 >> 10)<< 5) + 31] = len;
  307. for(i = 0; i<x.length; i+=32) //32 dwords is the block size
  308. {
  309. int64copy(a, H[0]);
  310. int64copy(b, H[1]);
  311. int64copy(c, H[2]);
  312. int64copy(d, H[3]);
  313. int64copy(e, H[4]);
  314. int64copy(f, H[5]);
  315. int64copy(g, H[6]);
  316. int64copy(h, H[7]);
  317. for(j=0; j<16; j++)
  318. {
  319. W[j].h = x[i + 2*j];
  320. W[j].l = x[i + 2*j + 1];
  321. }
  322. for(j=16; j<80; j++)
  323. {
  324. //sigma1
  325. int64rrot(r1, W[j-2], 19);
  326. int64revrrot(r2, W[j-2], 29);
  327. int64shr(r3, W[j-2], 6);
  328. s1.l = r1.l ^ r2.l ^ r3.l;
  329. s1.h = r1.h ^ r2.h ^ r3.h;
  330. //sigma0
  331. int64rrot(r1, W[j-15], 1);
  332. int64rrot(r2, W[j-15], 8);
  333. int64shr(r3, W[j-15], 7);
  334. s0.l = r1.l ^ r2.l ^ r3.l;
  335. s0.h = r1.h ^ r2.h ^ r3.h;
  336. int64add4(W[j], s1, W[j-7], s0, W[j-16]);
  337. }
  338. for(j = 0; j < 80; j++)
  339. {
  340. //Ch
  341. Ch.l = (e.l & f.l) ^ (~e.l & g.l);
  342. Ch.h = (e.h & f.h) ^ (~e.h & g.h);
  343. //Sigma1
  344. int64rrot(r1, e, 14);
  345. int64rrot(r2, e, 18);
  346. int64revrrot(r3, e, 9);
  347. s1.l = r1.l ^ r2.l ^ r3.l;
  348. s1.h = r1.h ^ r2.h ^ r3.h;
  349. //Sigma0
  350. int64rrot(r1, a, 28);
  351. int64revrrot(r2, a, 2);
  352. int64revrrot(r3, a, 7);
  353. s0.l = r1.l ^ r2.l ^ r3.l;
  354. s0.h = r1.h ^ r2.h ^ r3.h;
  355. //Maj
  356. Maj.l = (a.l & b.l) ^ (a.l & c.l) ^ (b.l & c.l);
  357. Maj.h = (a.h & b.h) ^ (a.h & c.h) ^ (b.h & c.h);
  358. int64add5(T1, h, s1, Ch, sha512_k[j], W[j]);
  359. int64add(T2, s0, Maj);
  360. int64copy(h, g);
  361. int64copy(g, f);
  362. int64copy(f, e);
  363. int64add(e, d, T1);
  364. int64copy(d, c);
  365. int64copy(c, b);
  366. int64copy(b, a);
  367. int64add(a, T1, T2);
  368. }
  369. int64add(H[0], H[0], a);
  370. int64add(H[1], H[1], b);
  371. int64add(H[2], H[2], c);
  372. int64add(H[3], H[3], d);
  373. int64add(H[4], H[4], e);
  374. int64add(H[5], H[5], f);
  375. int64add(H[6], H[6], g);
  376. int64add(H[7], H[7], h);
  377. }
  378. //represent the hash as an array of 32-bit dwords
  379. var hash = new Array(16);
  380. for(i=0; i<8; i++)
  381. {
  382. hash[2*i] = H[i].h;
  383. hash[2*i + 1] = H[i].l;
  384. }
  385. return hash;
  386. }
  387. //A constructor for 64-bit numbers
  388. function int64(h, l)
  389. {
  390. this.h = h;
  391. this.l = l;
  392. //this.toString = int64toString;
  393. }
  394. //Copies src into dst, assuming both are 64-bit numbers
  395. function int64copy(dst, src)
  396. {
  397. dst.h = src.h;
  398. dst.l = src.l;
  399. }
  400. //Right-rotates a 64-bit number by shift
  401. //Won't handle cases of shift>=32
  402. //The function revrrot() is for that
  403. function int64rrot(dst, x, shift)
  404. {
  405. dst.l = (x.l >>> shift) | (x.h << (32-shift));
  406. dst.h = (x.h >>> shift) | (x.l << (32-shift));
  407. }
  408. //Reverses the dwords of the source and then rotates right by shift.
  409. //This is equivalent to rotation by 32+shift
  410. function int64revrrot(dst, x, shift)
  411. {
  412. dst.l = (x.h >>> shift) | (x.l << (32-shift));
  413. dst.h = (x.l >>> shift) | (x.h << (32-shift));
  414. }
  415. //Bitwise-shifts right a 64-bit number by shift
  416. //Won't handle shift>=32, but it's never needed in SHA512
  417. function int64shr(dst, x, shift)
  418. {
  419. dst.l = (x.l >>> shift) | (x.h << (32-shift));
  420. dst.h = (x.h >>> shift);
  421. }
  422. //Adds two 64-bit numbers
  423. //Like the original implementation, does not rely on 32-bit operations
  424. function int64add(dst, x, y)
  425. {
  426. var w0 = (x.l & 0xffff) + (y.l & 0xffff);
  427. var w1 = (x.l >>> 16) + (y.l >>> 16) + (w0 >>> 16);
  428. var w2 = (x.h & 0xffff) + (y.h & 0xffff) + (w1 >>> 16);
  429. var w3 = (x.h >>> 16) + (y.h >>> 16) + (w2 >>> 16);
  430. dst.l = (w0 & 0xffff) | (w1 << 16);
  431. dst.h = (w2 & 0xffff) | (w3 << 16);
  432. }
  433. //Same, except with 4 addends. Works faster than adding them one by one.
  434. function int64add4(dst, a, b, c, d)
  435. {
  436. var w0 = (a.l & 0xffff) + (b.l & 0xffff) + (c.l & 0xffff) + (d.l & 0xffff);
  437. var w1 = (a.l >>> 16) + (b.l >>> 16) + (c.l >>> 16) + (d.l >>> 16) + (w0 >>> 16);
  438. var w2 = (a.h & 0xffff) + (b.h & 0xffff) + (c.h & 0xffff) + (d.h & 0xffff) + (w1 >>> 16);
  439. var w3 = (a.h >>> 16) + (b.h >>> 16) + (c.h >>> 16) + (d.h >>> 16) + (w2 >>> 16);
  440. dst.l = (w0 & 0xffff) | (w1 << 16);
  441. dst.h = (w2 & 0xffff) | (w3 << 16);
  442. }
  443. //Same, except with 5 addends
  444. function int64add5(dst, a, b, c, d, e)
  445. {
  446. var w0 = (a.l & 0xffff) + (b.l & 0xffff) + (c.l & 0xffff) + (d.l & 0xffff) + (e.l & 0xffff);
  447. var w1 = (a.l >>> 16) + (b.l >>> 16) + (c.l >>> 16) + (d.l >>> 16) + (e.l >>> 16) + (w0 >>> 16);
  448. var w2 = (a.h & 0xffff) + (b.h & 0xffff) + (c.h & 0xffff) + (d.h & 0xffff) + (e.h & 0xffff) + (w1 >>> 16);
  449. var w3 = (a.h >>> 16) + (b.h >>> 16) + (c.h >>> 16) + (d.h >>> 16) + (e.h >>> 16) + (w2 >>> 16);
  450. dst.l = (w0 & 0xffff) | (w1 << 16);
  451. dst.h = (w2 & 0xffff) | (w3 << 16);
  452. }