vendor.js 5.8 KB

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