sha256.jquery.debug.js 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247
  1. /*
  2. * A JavaScript implementation of the SHA256 hash function.
  3. *
  4. * FILE: sha256.jquery.debug.js
  5. * VERSION: 1.0
  6. *
  7. * MODIFICATION BY: Jacob Bair <orso.zed@gmail.com>
  8. * ORIGINAL AUTHOR: Christoph Bichlmeier <informatik@zombiearena.de>
  9. *
  10. * NOTE: This version is not tested thoroughly!
  11. *
  12. * Copyright (c) 2003, Christoph Bichlmeier
  13. * All rights reserved.
  14. *
  15. * Redistribution and use in source and binary forms, with or without
  16. * modification, are permitted provided that the following conditions
  17. * are met:
  18. * 1. Redistributions of source code must retain the above copyright
  19. * notice, this list of conditions and the following disclaimer.
  20. * 2. Redistributions in binary form must reproduce the above copyright
  21. * notice, this list of conditions and the following disclaimer in the
  22. * documentation and/or other materials provided with the distribution.
  23. * 3. Neither the name of the copyright holder nor the names of contributors
  24. * may be used to endorse or promote products derived from this software
  25. * without specific prior written permission.
  26. *
  27. * ======================================================================
  28. *
  29. * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS
  30. * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  31. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  32. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE
  33. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  34. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  35. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
  36. * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  37. * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
  38. * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
  39. * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  40. */
  41. (function($) {
  42. $.sha256 = function(data) {
  43. var ihash, count, buffer;
  44. var hex_digits = "0123456789abcdef";
  45. /* Hash constant words K: */
  46. var K256 = new Array(
  47. 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  48. 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  49. 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  50. 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  51. 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  52. 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  53. 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  54. 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  55. 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  56. 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  57. 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  58. 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  59. 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  60. 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  61. 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  62. 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
  63. );
  64. var rotateRight = function(n, x) {
  65. return ((x >>> n) | (x << (32 - n)));
  66. };
  67. var choice = function(x, y, z) {
  68. return ((x & y) ^ (~x & z));
  69. };
  70. var majority = function(x, y, z) {
  71. return ((x & y) ^ (x & z) ^ (y & z));
  72. };
  73. var Sigma0 = function(x) {
  74. return (rotateRight(2, x) ^ rotateRight(13, x) ^ rotateRight(22, x));
  75. };
  76. var Sigma1 = function(x) {
  77. return (rotateRight(6, x) ^ rotateRight(11, x) ^ rotateRight(25, x));
  78. };
  79. var sigma0 = function(x) {
  80. return (rotateRight(7, x) ^ rotateRight(18, x) ^ (x >>> 3));
  81. };
  82. var sigma1 = function(x) {
  83. return (rotateRight(17, x) ^ rotateRight(19, x) ^ (x >>> 10));
  84. };
  85. var expand = function(W, j) {
  86. return (W[j & 0x0f] += sigma1(W[(j + 14) & 0x0f]) + W[(j + 9) & 0x0f] + sigma0(W[(j + 1) & 0x0f]));
  87. };
  88. var safe_add = function (x, y) {
  89. var lsw = (x & 0xffff) + (y & 0xffff);
  90. var msw = (x >> 16) + (y >> 16) + (lsw >> 16);
  91. return (msw << 16) | (lsw & 0xffff);
  92. };
  93. var init = function() {
  94. ihash = new Array(8);
  95. count = new Array(2);
  96. buffer = new Array(64);
  97. count[0] = count[1] = 0;
  98. ihash[0] = 0x6a09e667;
  99. ihash[1] = 0xbb67ae85;
  100. ihash[2] = 0x3c6ef372;
  101. ihash[3] = 0xa54ff53a;
  102. ihash[4] = 0x510e527f;
  103. ihash[5] = 0x9b05688c;
  104. ihash[6] = 0x1f83d9ab;
  105. ihash[7] = 0x5be0cd19;
  106. };
  107. var update = function(data, length) {
  108. var index, curpos = 0;
  109. /* Compute number of bytes mod 64 */
  110. index = ((count[0] >> 3) & 0x3f);
  111. var remainder = (length & 0x3f);
  112. /* Update number of bits */
  113. if ((count[0] += (length << 3)) < (length << 3)) {
  114. count[1]++;
  115. }
  116. count[1] += (length >> 29);
  117. /* Transform as many times as possible */
  118. for (var i = 0; i + 63 < length; i += 64) {
  119. for (var j = index; j < 64; j++) {
  120. buffer[j] = data.charCodeAt(curpos++);
  121. }
  122. transform();
  123. index = 0;
  124. }
  125. /* Buffer remaining input */
  126. for (var k = 0; k < remainder; k++) {
  127. buffer[k] = data.charCodeAt(curpos++);
  128. }
  129. };
  130. var transform = function() {
  131. var a, b, c, d, e, f, g, h, T1, T2;
  132. var W = new Array(16);
  133. /* Initialize registers with the previous intermediate value */
  134. a = ihash[0];
  135. b = ihash[1];
  136. c = ihash[2];
  137. d = ihash[3];
  138. e = ihash[4];
  139. f = ihash[5];
  140. g = ihash[6];
  141. h = ihash[7];
  142. /* make 32-bit words */
  143. for (var i = 0; i < 16; i++) {
  144. W[i] = ((buffer[(i << 2) + 3]) | (buffer[(i << 2) + 2] << 8) | (buffer[(i << 2) + 1] << 16) | (buffer[i << 2] << 24));
  145. }
  146. for (var j = 0; j < 64; j++) {
  147. T1 = h + Sigma1(e) + choice(e, f, g) + K256[j];
  148. if (j < 16) {
  149. T1 += W[j];
  150. } else {
  151. T1 += expand(W, j);
  152. }
  153. T2 = Sigma0(a) + majority(a, b, c);
  154. h = g;
  155. g = f;
  156. f = e;
  157. e = safe_add(d, T1);
  158. d = c;
  159. c = b;
  160. b = a;
  161. a = safe_add(T1, T2);
  162. }
  163. /* Compute the current intermediate hash value */
  164. ihash[0] += a;
  165. ihash[1] += b;
  166. ihash[2] += c;
  167. ihash[3] += d;
  168. ihash[4] += e;
  169. ihash[5] += f;
  170. ihash[6] += g;
  171. ihash[7] += h;
  172. };
  173. var final = function() {
  174. var index = ((count[0] >> 3) & 0x3f);
  175. buffer[index++] = 0x80;
  176. if (index <= 56) {
  177. for (var i = index; i < 56; i++) {
  178. buffer[i] = 0;
  179. }
  180. } else {
  181. for (var i = index; i < 64; i++) {
  182. buffer[i] = 0;
  183. }
  184. transform();
  185. for (var i = 0; i < 56; i++) {
  186. buffer[i] = 0;
  187. }
  188. }
  189. buffer[56] = (count[1] >>> 24) & 0xff;
  190. buffer[57] = (count[1] >>> 16) & 0xff;
  191. buffer[58] = (count[1] >>> 8) & 0xff;
  192. buffer[59] = count[1] & 0xff;
  193. buffer[60] = (count[0] >>> 24) & 0xff;
  194. buffer[61] = (count[0] >>> 16) & 0xff;
  195. buffer[62] = (count[0] >>> 8) & 0xff;
  196. buffer[63] = count[0] & 0xff;
  197. transform();
  198. };
  199. var encode = function() {
  200. var output = "";
  201. for (var i = 0; i < 8; i++) {
  202. for (var j = 28; j >= 0; j -= 4) {
  203. output += hex_digits.charAt((ihash[i] >>> j) & 0x0f);
  204. }
  205. }
  206. return output;
  207. };
  208. if ($.isPlainObject(data) || $.isArray(data)) {
  209. data = JSON.stringify(data);
  210. }
  211. init();
  212. update(data, data.length);
  213. final();
  214. return encode();
  215. };
  216. })(jQuery);