crypto-js.min.js 29 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270
  1. export var CryptoJS = CryptoJS || function(u, l) {
  2. var d = {},
  3. n = d.lib = {},
  4. p = function() {},
  5. s = n.Base = {
  6. extend: function(a) {
  7. p.prototype = this;
  8. var c = new p;
  9. a && c.mixIn(a);
  10. c.hasOwnProperty("init") || (c.init = function() {
  11. c.$super.init.apply(this, arguments)
  12. });
  13. c.init.prototype = c;
  14. c.$super = this;
  15. return c
  16. },
  17. create: function() {
  18. var a = this.extend();
  19. a.init.apply(a, arguments);
  20. return a
  21. },
  22. init: function() {},
  23. mixIn: function(a) {
  24. for (var c in a) a.hasOwnProperty(c) && (this[c] = a[c]);
  25. a.hasOwnProperty("toString") && (this.toString = a.toString)
  26. },
  27. clone: function() {
  28. return this.init.prototype.extend(this)
  29. }
  30. },
  31. q = n.WordArray = s.extend({
  32. init: function(a, c) {
  33. a = this.words = a || [];
  34. this.sigBytes = c != l ? c : 4 * a.length
  35. },
  36. toString: function(a) {
  37. return (a || v).stringify(this)
  38. },
  39. concat: function(a) {
  40. var c = this.words,
  41. m = a.words,
  42. f = this.sigBytes;
  43. a = a.sigBytes;
  44. this.clamp();
  45. if (f % 4)
  46. for (var t = 0; t < a; t++) c[f + t >>> 2] |= (m[t >>> 2] >>> 24 - 8 * (t % 4) & 255) << 24 - 8 * ((f +
  47. t) % 4);
  48. else if (65535 < m.length)
  49. for (t = 0; t < a; t += 4) c[f + t >>> 2] = m[t >>> 2];
  50. else c.push.apply(c, m);
  51. this.sigBytes += a;
  52. return this
  53. },
  54. clamp: function() {
  55. var a = this.words,
  56. c = this.sigBytes;
  57. a[c >>> 2] &= 4294967295 <<
  58. 32 - 8 * (c % 4);
  59. a.length = u.ceil(c / 4)
  60. },
  61. clone: function() {
  62. var a = s.clone.call(this);
  63. a.words = this.words.slice(0);
  64. return a
  65. },
  66. random: function(a) {
  67. for (var c = [], m = 0; m < a; m += 4) c.push(4294967296 * u.random() | 0);
  68. return new q.init(c, a)
  69. }
  70. }),
  71. w = d.enc = {},
  72. v = w.Hex = {
  73. stringify: function(a) {
  74. var c = a.words;
  75. a = a.sigBytes;
  76. for (var m = [], f = 0; f < a; f++) {
  77. var t = c[f >>> 2] >>> 24 - 8 * (f % 4) & 255;
  78. m.push((t >>> 4).toString(16));
  79. m.push((t & 15).toString(16))
  80. }
  81. return m.join("")
  82. },
  83. parse: function(a) {
  84. for (var c = a.length, m = [], f = 0; f < c; f += 2) m[f >>> 3] |= parseInt(a.substr(f,
  85. 2), 16) << 24 - 4 * (f % 8);
  86. return new q.init(m, c / 2)
  87. }
  88. },
  89. b = w.Latin1 = {
  90. stringify: function(a) {
  91. var c = a.words;
  92. a = a.sigBytes;
  93. for (var m = [], f = 0; f < a; f++) m.push(String.fromCharCode(c[f >>> 2] >>> 24 - 8 * (f % 4) & 255));
  94. return m.join("")
  95. },
  96. parse: function(a) {
  97. for (var c = a.length, m = [], f = 0; f < c; f++) m[f >>> 2] |= (a.charCodeAt(f) & 255) << 24 - 8 * (f % 4);
  98. return new q.init(m, c)
  99. }
  100. },
  101. x = w.Utf8 = {
  102. stringify: function(a) {
  103. try {
  104. return decodeURIComponent(escape(b.stringify(a)))
  105. } catch (c) {
  106. throw Error("Malformed UTF-8 data");
  107. }
  108. },
  109. parse: function(a) {
  110. return b.parse(unescape(encodeURIComponent(a)))
  111. }
  112. },
  113. r = n.BufferedBlockAlgorithm = s.extend({
  114. reset: function() {
  115. this._data = new q.init;
  116. this._nDataBytes = 0
  117. },
  118. _append: function(a) {
  119. "string" == typeof a && (a = x.parse(a));
  120. this._data.concat(a);
  121. this._nDataBytes += a.sigBytes
  122. },
  123. _process: function(a) {
  124. var c = this._data,
  125. m = c.words,
  126. f = c.sigBytes,
  127. t = this.blockSize,
  128. b = f / (4 * t),
  129. b = a ? u.ceil(b) : u.max((b | 0) - this._minBufferSize, 0);
  130. a = b * t;
  131. f = u.min(4 * a, f);
  132. if (a) {
  133. for (var e = 0; e < a; e += t) this._doProcessBlock(m, e);
  134. e = m.splice(0, a);
  135. c.sigBytes -= f
  136. }
  137. return new q.init(e, f)
  138. },
  139. clone: function() {
  140. var a = s.clone.call(this);
  141. a._data = this._data.clone();
  142. return a
  143. },
  144. _minBufferSize: 0
  145. });
  146. n.Hasher = r.extend({
  147. cfg: s.extend(),
  148. init: function(a) {
  149. this.cfg = this.cfg.extend(a);
  150. this.reset()
  151. },
  152. reset: function() {
  153. r.reset.call(this);
  154. this._doReset()
  155. },
  156. update: function(a) {
  157. this._append(a);
  158. this._process();
  159. return this
  160. },
  161. finalize: function(a) {
  162. a && this._append(a);
  163. return this._doFinalize()
  164. },
  165. blockSize: 16,
  166. _createHelper: function(a) {
  167. return function(c, m) {
  168. return (new a.init(m)).finalize(c)
  169. }
  170. },
  171. _createHmacHelper: function(a) {
  172. return function(c, m) {
  173. return (new e.HMAC.init(a,
  174. m)).finalize(c)
  175. }
  176. }
  177. });
  178. var e = d.algo = {};
  179. return d
  180. }(Math);
  181. (function() {
  182. var u = CryptoJS,
  183. l = u.lib.WordArray;
  184. u.enc.Base64 = {
  185. stringify: function(d) {
  186. var n = d.words,
  187. l = d.sigBytes,
  188. s = this._map;
  189. d.clamp();
  190. d = [];
  191. for (var q = 0; q < l; q += 3)
  192. for (var w = (n[q >>> 2] >>> 24 - 8 * (q % 4) & 255) << 16 | (n[q + 1 >>> 2] >>> 24 - 8 * ((q + 1) % 4) &
  193. 255) << 8 | n[q + 2 >>> 2] >>> 24 - 8 * ((q + 2) % 4) & 255, v = 0; 4 > v && q + 0.75 * v < l; v++) d
  194. .push(s.charAt(w >>> 6 * (3 - v) & 63));
  195. if (n = s.charAt(64))
  196. for (; d.length % 4;) d.push(n);
  197. return d.join("")
  198. },
  199. parse: function(d) {
  200. var n = d.length,
  201. p = this._map,
  202. s = p.charAt(64);
  203. s && (s = d.indexOf(s), -1 != s && (n = s));
  204. for (var s = [], q = 0, w = 0; w <
  205. n; w++)
  206. if (w % 4) {
  207. var v = p.indexOf(d.charAt(w - 1)) << 2 * (w % 4),
  208. b = p.indexOf(d.charAt(w)) >>> 6 - 2 * (w % 4);
  209. s[q >>> 2] |= (v | b) << 24 - 8 * (q % 4);
  210. q++
  211. } return l.create(s, q)
  212. },
  213. _map: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/="
  214. }
  215. })();
  216. (function(u) {
  217. function l(b, e, a, c, m, f, t) {
  218. b = b + (e & a | ~e & c) + m + t;
  219. return (b << f | b >>> 32 - f) + e
  220. }
  221. function d(b, e, a, c, m, f, t) {
  222. b = b + (e & c | a & ~c) + m + t;
  223. return (b << f | b >>> 32 - f) + e
  224. }
  225. function n(b, e, a, c, m, f, t) {
  226. b = b + (e ^ a ^ c) + m + t;
  227. return (b << f | b >>> 32 - f) + e
  228. }
  229. function p(b, e, a, c, m, f, t) {
  230. b = b + (a ^ (e | ~c)) + m + t;
  231. return (b << f | b >>> 32 - f) + e
  232. }
  233. for (var s = CryptoJS, q = s.lib, w = q.WordArray, v = q.Hasher, q = s.algo, b = [], x = 0; 64 > x; x++) b[x] =
  234. 4294967296 * u.abs(u.sin(x + 1)) | 0;
  235. q = q.MD5 = v.extend({
  236. _doReset: function() {
  237. this._hash = new w.init([1732584193, 4023233417, 2562383102, 271733878])
  238. },
  239. _doProcessBlock: function(r, e) {
  240. for (var a = 0; 16 > a; a++) {
  241. var c = e + a,
  242. m = r[c];
  243. r[c] = (m << 8 | m >>> 24) & 16711935 | (m << 24 | m >>> 8) & 4278255360
  244. }
  245. var a = this._hash.words,
  246. c = r[e + 0],
  247. m = r[e + 1],
  248. f = r[e + 2],
  249. t = r[e + 3],
  250. y = r[e + 4],
  251. q = r[e + 5],
  252. s = r[e + 6],
  253. w = r[e + 7],
  254. v = r[e + 8],
  255. u = r[e + 9],
  256. x = r[e + 10],
  257. z = r[e + 11],
  258. A = r[e + 12],
  259. B = r[e + 13],
  260. C = r[e + 14],
  261. D = r[e + 15],
  262. g = a[0],
  263. h = a[1],
  264. j = a[2],
  265. k = a[3],
  266. g = l(g, h, j, k, c, 7, b[0]),
  267. k = l(k, g, h, j, m, 12, b[1]),
  268. j = l(j, k, g, h, f, 17, b[2]),
  269. h = l(h, j, k, g, t, 22, b[3]),
  270. g = l(g, h, j, k, y, 7, b[4]),
  271. k = l(k, g, h, j, q, 12, b[5]),
  272. j = l(j, k, g, h, s, 17, b[6]),
  273. h = l(h, j, k, g, w, 22, b[7]),
  274. g = l(g, h, j, k, v, 7, b[8]),
  275. k = l(k, g, h, j, u, 12, b[9]),
  276. j = l(j, k, g, h, x, 17, b[10]),
  277. h = l(h, j, k, g, z, 22, b[11]),
  278. g = l(g, h, j, k, A, 7, b[12]),
  279. k = l(k, g, h, j, B, 12, b[13]),
  280. j = l(j, k, g, h, C, 17, b[14]),
  281. h = l(h, j, k, g, D, 22, b[15]),
  282. g = d(g, h, j, k, m, 5, b[16]),
  283. k = d(k, g, h, j, s, 9, b[17]),
  284. j = d(j, k, g, h, z, 14, b[18]),
  285. h = d(h, j, k, g, c, 20, b[19]),
  286. g = d(g, h, j, k, q, 5, b[20]),
  287. k = d(k, g, h, j, x, 9, b[21]),
  288. j = d(j, k, g, h, D, 14, b[22]),
  289. h = d(h, j, k, g, y, 20, b[23]),
  290. g = d(g, h, j, k, u, 5, b[24]),
  291. k = d(k, g, h, j, C, 9, b[25]),
  292. j = d(j, k, g, h, t, 14, b[26]),
  293. h = d(h, j, k, g, v, 20, b[27]),
  294. g = d(g, h, j, k, B, 5, b[28]),
  295. k = d(k, g,
  296. h, j, f, 9, b[29]),
  297. j = d(j, k, g, h, w, 14, b[30]),
  298. h = d(h, j, k, g, A, 20, b[31]),
  299. g = n(g, h, j, k, q, 4, b[32]),
  300. k = n(k, g, h, j, v, 11, b[33]),
  301. j = n(j, k, g, h, z, 16, b[34]),
  302. h = n(h, j, k, g, C, 23, b[35]),
  303. g = n(g, h, j, k, m, 4, b[36]),
  304. k = n(k, g, h, j, y, 11, b[37]),
  305. j = n(j, k, g, h, w, 16, b[38]),
  306. h = n(h, j, k, g, x, 23, b[39]),
  307. g = n(g, h, j, k, B, 4, b[40]),
  308. k = n(k, g, h, j, c, 11, b[41]),
  309. j = n(j, k, g, h, t, 16, b[42]),
  310. h = n(h, j, k, g, s, 23, b[43]),
  311. g = n(g, h, j, k, u, 4, b[44]),
  312. k = n(k, g, h, j, A, 11, b[45]),
  313. j = n(j, k, g, h, D, 16, b[46]),
  314. h = n(h, j, k, g, f, 23, b[47]),
  315. g = p(g, h, j, k, c, 6, b[48]),
  316. k = p(k, g, h, j, w, 10, b[49]),
  317. j = p(j, k, g, h,
  318. C, 15, b[50]),
  319. h = p(h, j, k, g, q, 21, b[51]),
  320. g = p(g, h, j, k, A, 6, b[52]),
  321. k = p(k, g, h, j, t, 10, b[53]),
  322. j = p(j, k, g, h, x, 15, b[54]),
  323. h = p(h, j, k, g, m, 21, b[55]),
  324. g = p(g, h, j, k, v, 6, b[56]),
  325. k = p(k, g, h, j, D, 10, b[57]),
  326. j = p(j, k, g, h, s, 15, b[58]),
  327. h = p(h, j, k, g, B, 21, b[59]),
  328. g = p(g, h, j, k, y, 6, b[60]),
  329. k = p(k, g, h, j, z, 10, b[61]),
  330. j = p(j, k, g, h, f, 15, b[62]),
  331. h = p(h, j, k, g, u, 21, b[63]);
  332. a[0] = a[0] + g | 0;
  333. a[1] = a[1] + h | 0;
  334. a[2] = a[2] + j | 0;
  335. a[3] = a[3] + k | 0
  336. },
  337. _doFinalize: function() {
  338. var b = this._data,
  339. e = b.words,
  340. a = 8 * this._nDataBytes,
  341. c = 8 * b.sigBytes;
  342. e[c >>> 5] |= 128 << 24 - c % 32;
  343. var m = u.floor(a /
  344. 4294967296);
  345. e[(c + 64 >>> 9 << 4) + 15] = (m << 8 | m >>> 24) & 16711935 | (m << 24 | m >>> 8) & 4278255360;
  346. e[(c + 64 >>> 9 << 4) + 14] = (a << 8 | a >>> 24) & 16711935 | (a << 24 | a >>> 8) & 4278255360;
  347. b.sigBytes = 4 * (e.length + 1);
  348. this._process();
  349. b = this._hash;
  350. e = b.words;
  351. for (a = 0; 4 > a; a++) c = e[a], e[a] = (c << 8 | c >>> 24) & 16711935 | (c << 24 | c >>> 8) &
  352. 4278255360;
  353. return b
  354. },
  355. clone: function() {
  356. var b = v.clone.call(this);
  357. b._hash = this._hash.clone();
  358. return b
  359. }
  360. });
  361. s.MD5 = v._createHelper(q);
  362. s.HmacMD5 = v._createHmacHelper(q)
  363. })(Math);
  364. (function() {
  365. var u = CryptoJS,
  366. l = u.lib,
  367. d = l.Base,
  368. n = l.WordArray,
  369. l = u.algo,
  370. p = l.EvpKDF = d.extend({
  371. cfg: d.extend({
  372. keySize: 4,
  373. hasher: l.MD5,
  374. iterations: 1
  375. }),
  376. init: function(d) {
  377. this.cfg = this.cfg.extend(d)
  378. },
  379. compute: function(d, l) {
  380. for (var p = this.cfg, v = p.hasher.create(), b = n.create(), u = b.words, r = p.keySize, p = p
  381. .iterations; u.length < r;) {
  382. e && v.update(e);
  383. var e = v.update(d).finalize(l);
  384. v.reset();
  385. for (var a = 1; a < p; a++) e = v.finalize(e), v.reset();
  386. b.concat(e)
  387. }
  388. b.sigBytes = 4 * r;
  389. return b
  390. }
  391. });
  392. u.EvpKDF = function(d, l, n) {
  393. return p.create(n).compute(d,
  394. l)
  395. }
  396. })();
  397. CryptoJS.lib.Cipher || function(u) {
  398. var l = CryptoJS,
  399. d = l.lib,
  400. n = d.Base,
  401. p = d.WordArray,
  402. s = d.BufferedBlockAlgorithm,
  403. q = l.enc.Base64,
  404. w = l.algo.EvpKDF,
  405. v = d.Cipher = s.extend({
  406. cfg: n.extend(),
  407. createEncryptor: function(m, a) {
  408. return this.create(this._ENC_XFORM_MODE, m, a)
  409. },
  410. createDecryptor: function(m, a) {
  411. return this.create(this._DEC_XFORM_MODE, m, a)
  412. },
  413. init: function(m, a, b) {
  414. this.cfg = this.cfg.extend(b);
  415. this._xformMode = m;
  416. this._key = a;
  417. this.reset()
  418. },
  419. reset: function() {
  420. s.reset.call(this);
  421. this._doReset()
  422. },
  423. process: function(a) {
  424. this._append(a);
  425. return this._process()
  426. },
  427. finalize: function(a) {
  428. a && this._append(a);
  429. return this._doFinalize()
  430. },
  431. keySize: 4,
  432. ivSize: 4,
  433. _ENC_XFORM_MODE: 1,
  434. _DEC_XFORM_MODE: 2,
  435. _createHelper: function(m) {
  436. return {
  437. encrypt: function(f, b, e) {
  438. return ("string" == typeof b ? c : a).encrypt(m, f, b, e)
  439. },
  440. decrypt: function(f, b, e) {
  441. return ("string" == typeof b ? c : a).decrypt(m, f, b, e)
  442. }
  443. }
  444. }
  445. });
  446. d.StreamCipher = v.extend({
  447. _doFinalize: function() {
  448. return this._process(!0)
  449. },
  450. blockSize: 1
  451. });
  452. var b = l.mode = {},
  453. x = function(a, f, b) {
  454. var c = this._iv;
  455. c ? this._iv = u : c = this._prevBlock;
  456. for (var e = 0; e < b; e++) a[f + e] ^=
  457. c[e]
  458. },
  459. r = (d.BlockCipherMode = n.extend({
  460. createEncryptor: function(a, f) {
  461. return this.Encryptor.create(a, f)
  462. },
  463. createDecryptor: function(a, f) {
  464. return this.Decryptor.create(a, f)
  465. },
  466. init: function(a, f) {
  467. this._cipher = a;
  468. this._iv = f
  469. }
  470. })).extend();
  471. r.Encryptor = r.extend({
  472. processBlock: function(a, f) {
  473. var b = this._cipher,
  474. c = b.blockSize;
  475. x.call(this, a, f, c);
  476. b.encryptBlock(a, f);
  477. this._prevBlock = a.slice(f, f + c)
  478. }
  479. });
  480. r.Decryptor = r.extend({
  481. processBlock: function(a, b) {
  482. var c = this._cipher,
  483. e = c.blockSize,
  484. d = a.slice(b, b + e);
  485. c.decryptBlock(a, b);
  486. x.call(this,
  487. a, b, e);
  488. this._prevBlock = d
  489. }
  490. });
  491. b = b.CBC = r;
  492. r = (l.pad = {}).Pkcs7 = {
  493. pad: function(a, b) {
  494. for (var c = 4 * b, c = c - a.sigBytes % c, e = c << 24 | c << 16 | c << 8 | c, d = [], l = 0; l < c; l +=
  495. 4) d.push(e);
  496. c = p.create(d, c);
  497. a.concat(c)
  498. },
  499. unpad: function(a) {
  500. a.sigBytes -= a.words[a.sigBytes - 1 >>> 2] & 255
  501. }
  502. };
  503. d.BlockCipher = v.extend({
  504. cfg: v.cfg.extend({
  505. mode: b,
  506. padding: r
  507. }),
  508. reset: function() {
  509. v.reset.call(this);
  510. var a = this.cfg,
  511. c = a.iv,
  512. a = a.mode;
  513. if (this._xformMode == this._ENC_XFORM_MODE) var b = a.createEncryptor;
  514. else b = a.createDecryptor, this._minBufferSize = 1;
  515. this._mode = b.call(a,
  516. this, c && c.words)
  517. },
  518. _doProcessBlock: function(a, c) {
  519. this._mode.processBlock(a, c)
  520. },
  521. _doFinalize: function() {
  522. var a = this.cfg.padding;
  523. if (this._xformMode == this._ENC_XFORM_MODE) {
  524. a.pad(this._data, this.blockSize);
  525. var c = this._process(!0)
  526. } else c = this._process(!0), a.unpad(c);
  527. return c
  528. },
  529. blockSize: 4
  530. });
  531. var e = d.CipherParams = n.extend({
  532. init: function(a) {
  533. this.mixIn(a)
  534. },
  535. toString: function(a) {
  536. return (a || this.formatter).stringify(this)
  537. }
  538. }),
  539. b = (l.format = {}).OpenSSL = {
  540. stringify: function(a) {
  541. var c = a.ciphertext;
  542. a = a.salt;
  543. return (a ? p.create([1398893684,
  544. 1701076831
  545. ]).concat(a).concat(c) : c).toString(q)
  546. },
  547. parse: function(a) {
  548. a = q.parse(a);
  549. var c = a.words;
  550. if (1398893684 == c[0] && 1701076831 == c[1]) {
  551. var b = p.create(c.slice(2, 4));
  552. c.splice(0, 4);
  553. a.sigBytes -= 16
  554. }
  555. return e.create({
  556. ciphertext: a,
  557. salt: b
  558. })
  559. }
  560. },
  561. a = d.SerializableCipher = n.extend({
  562. cfg: n.extend({
  563. format: b
  564. }),
  565. encrypt: function(a, c, b, d) {
  566. d = this.cfg.extend(d);
  567. var l = a.createEncryptor(b, d);
  568. c = l.finalize(c);
  569. l = l.cfg;
  570. return e.create({
  571. ciphertext: c,
  572. key: b,
  573. iv: l.iv,
  574. algorithm: a,
  575. mode: l.mode,
  576. padding: l.padding,
  577. blockSize: a.blockSize,
  578. formatter: d.format
  579. })
  580. },
  581. decrypt: function(a, c, b, e) {
  582. e = this.cfg.extend(e);
  583. c = this._parse(c, e.format);
  584. return a.createDecryptor(b, e).finalize(c.ciphertext)
  585. },
  586. _parse: function(a, c) {
  587. return "string" == typeof a ? c.parse(a, this) : a
  588. }
  589. }),
  590. l = (l.kdf = {}).OpenSSL = {
  591. execute: function(a, c, b, d) {
  592. d || (d = p.random(8));
  593. a = w.create({
  594. keySize: c + b
  595. }).compute(a, d);
  596. b = p.create(a.words.slice(c), 4 * b);
  597. a.sigBytes = 4 * c;
  598. return e.create({
  599. key: a,
  600. iv: b,
  601. salt: d
  602. })
  603. }
  604. },
  605. c = d.PasswordBasedCipher = a.extend({
  606. cfg: a.cfg.extend({
  607. kdf: l
  608. }),
  609. encrypt: function(c, b, e, d) {
  610. d = this.cfg.extend(d);
  611. e = d.kdf.execute(e,
  612. c.keySize, c.ivSize);
  613. d.iv = e.iv;
  614. c = a.encrypt.call(this, c, b, e.key, d);
  615. c.mixIn(e);
  616. return c
  617. },
  618. decrypt: function(c, b, e, d) {
  619. d = this.cfg.extend(d);
  620. b = this._parse(b, d.format);
  621. e = d.kdf.execute(e, c.keySize, c.ivSize, b.salt);
  622. d.iv = e.iv;
  623. return a.decrypt.call(this, c, b, e.key, d)
  624. }
  625. })
  626. }();
  627. (function() {
  628. function u(b, a) {
  629. var c = (this._lBlock >>> b ^ this._rBlock) & a;
  630. this._rBlock ^= c;
  631. this._lBlock ^= c << b
  632. }
  633. function l(b, a) {
  634. var c = (this._rBlock >>> b ^ this._lBlock) & a;
  635. this._lBlock ^= c;
  636. this._rBlock ^= c << b
  637. }
  638. var d = CryptoJS,
  639. n = d.lib,
  640. p = n.WordArray,
  641. n = n.BlockCipher,
  642. s = d.algo,
  643. q = [57, 49, 41, 33, 25, 17, 9, 1, 58, 50, 42, 34, 26, 18, 10, 2, 59, 51, 43, 35, 27, 19, 11, 3, 60, 52, 44, 36,
  644. 63, 55, 47, 39, 31, 23, 15, 7, 62, 54, 46, 38, 30, 22, 14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 28, 20, 12, 4
  645. ],
  646. w = [14, 17, 11, 24, 1, 5, 3, 28, 15, 6, 21, 10, 23, 19, 12, 4, 26, 8, 16, 7, 27, 20, 13, 2, 41, 52, 31, 37, 47,
  647. 55, 30, 40, 51, 45, 33, 48, 44, 49, 39, 56, 34, 53, 46, 42, 50, 36, 29, 32
  648. ],
  649. v = [1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28],
  650. b = [{
  651. "0": 8421888,
  652. 268435456: 32768,
  653. 536870912: 8421378,
  654. 805306368: 2,
  655. 1073741824: 512,
  656. 1342177280: 8421890,
  657. 1610612736: 8389122,
  658. 1879048192: 8388608,
  659. 2147483648: 514,
  660. 2415919104: 8389120,
  661. 2684354560: 33280,
  662. 2952790016: 8421376,
  663. 3221225472: 32770,
  664. 3489660928: 8388610,
  665. 3758096384: 0,
  666. 4026531840: 33282,
  667. 134217728: 0,
  668. 402653184: 8421890,
  669. 671088640: 33282,
  670. 939524096: 32768,
  671. 1207959552: 8421888,
  672. 1476395008: 512,
  673. 1744830464: 8421378,
  674. 2013265920: 2,
  675. 2281701376: 8389120,
  676. 2550136832: 33280,
  677. 2818572288: 8421376,
  678. 3087007744: 8389122,
  679. 3355443200: 8388610,
  680. 3623878656: 32770,
  681. 3892314112: 514,
  682. 4160749568: 8388608,
  683. 1: 32768,
  684. 268435457: 2,
  685. 536870913: 8421888,
  686. 805306369: 8388608,
  687. 1073741825: 8421378,
  688. 1342177281: 33280,
  689. 1610612737: 512,
  690. 1879048193: 8389122,
  691. 2147483649: 8421890,
  692. 2415919105: 8421376,
  693. 2684354561: 8388610,
  694. 2952790017: 33282,
  695. 3221225473: 514,
  696. 3489660929: 8389120,
  697. 3758096385: 32770,
  698. 4026531841: 0,
  699. 134217729: 8421890,
  700. 402653185: 8421376,
  701. 671088641: 8388608,
  702. 939524097: 512,
  703. 1207959553: 32768,
  704. 1476395009: 8388610,
  705. 1744830465: 2,
  706. 2013265921: 33282,
  707. 2281701377: 32770,
  708. 2550136833: 8389122,
  709. 2818572289: 514,
  710. 3087007745: 8421888,
  711. 3355443201: 8389120,
  712. 3623878657: 0,
  713. 3892314113: 33280,
  714. 4160749569: 8421378
  715. }, {
  716. "0": 1074282512,
  717. 16777216: 16384,
  718. 33554432: 524288,
  719. 50331648: 1074266128,
  720. 67108864: 1073741840,
  721. 83886080: 1074282496,
  722. 100663296: 1073758208,
  723. 117440512: 16,
  724. 134217728: 540672,
  725. 150994944: 1073758224,
  726. 167772160: 1073741824,
  727. 184549376: 540688,
  728. 201326592: 524304,
  729. 218103808: 0,
  730. 234881024: 16400,
  731. 251658240: 1074266112,
  732. 8388608: 1073758208,
  733. 25165824: 540688,
  734. 41943040: 16,
  735. 58720256: 1073758224,
  736. 75497472: 1074282512,
  737. 92274688: 1073741824,
  738. 109051904: 524288,
  739. 125829120: 1074266128,
  740. 142606336: 524304,
  741. 159383552: 0,
  742. 176160768: 16384,
  743. 192937984: 1074266112,
  744. 209715200: 1073741840,
  745. 226492416: 540672,
  746. 243269632: 1074282496,
  747. 260046848: 16400,
  748. 268435456: 0,
  749. 285212672: 1074266128,
  750. 301989888: 1073758224,
  751. 318767104: 1074282496,
  752. 335544320: 1074266112,
  753. 352321536: 16,
  754. 369098752: 540688,
  755. 385875968: 16384,
  756. 402653184: 16400,
  757. 419430400: 524288,
  758. 436207616: 524304,
  759. 452984832: 1073741840,
  760. 469762048: 540672,
  761. 486539264: 1073758208,
  762. 503316480: 1073741824,
  763. 520093696: 1074282512,
  764. 276824064: 540688,
  765. 293601280: 524288,
  766. 310378496: 1074266112,
  767. 327155712: 16384,
  768. 343932928: 1073758208,
  769. 360710144: 1074282512,
  770. 377487360: 16,
  771. 394264576: 1073741824,
  772. 411041792: 1074282496,
  773. 427819008: 1073741840,
  774. 444596224: 1073758224,
  775. 461373440: 524304,
  776. 478150656: 0,
  777. 494927872: 16400,
  778. 511705088: 1074266128,
  779. 528482304: 540672
  780. }, {
  781. "0": 260,
  782. 1048576: 0,
  783. 2097152: 67109120,
  784. 3145728: 65796,
  785. 4194304: 65540,
  786. 5242880: 67108868,
  787. 6291456: 67174660,
  788. 7340032: 67174400,
  789. 8388608: 67108864,
  790. 9437184: 67174656,
  791. 10485760: 65792,
  792. 11534336: 67174404,
  793. 12582912: 67109124,
  794. 13631488: 65536,
  795. 14680064: 4,
  796. 15728640: 256,
  797. 524288: 67174656,
  798. 1572864: 67174404,
  799. 2621440: 0,
  800. 3670016: 67109120,
  801. 4718592: 67108868,
  802. 5767168: 65536,
  803. 6815744: 65540,
  804. 7864320: 260,
  805. 8912896: 4,
  806. 9961472: 256,
  807. 11010048: 67174400,
  808. 12058624: 65796,
  809. 13107200: 65792,
  810. 14155776: 67109124,
  811. 15204352: 67174660,
  812. 16252928: 67108864,
  813. 16777216: 67174656,
  814. 17825792: 65540,
  815. 18874368: 65536,
  816. 19922944: 67109120,
  817. 20971520: 256,
  818. 22020096: 67174660,
  819. 23068672: 67108868,
  820. 24117248: 0,
  821. 25165824: 67109124,
  822. 26214400: 67108864,
  823. 27262976: 4,
  824. 28311552: 65792,
  825. 29360128: 67174400,
  826. 30408704: 260,
  827. 31457280: 65796,
  828. 32505856: 67174404,
  829. 17301504: 67108864,
  830. 18350080: 260,
  831. 19398656: 67174656,
  832. 20447232: 0,
  833. 21495808: 65540,
  834. 22544384: 67109120,
  835. 23592960: 256,
  836. 24641536: 67174404,
  837. 25690112: 65536,
  838. 26738688: 67174660,
  839. 27787264: 65796,
  840. 28835840: 67108868,
  841. 29884416: 67109124,
  842. 30932992: 67174400,
  843. 31981568: 4,
  844. 33030144: 65792
  845. }, {
  846. "0": 2151682048,
  847. 65536: 2147487808,
  848. 131072: 4198464,
  849. 196608: 2151677952,
  850. 262144: 0,
  851. 327680: 4198400,
  852. 393216: 2147483712,
  853. 458752: 4194368,
  854. 524288: 2147483648,
  855. 589824: 4194304,
  856. 655360: 64,
  857. 720896: 2147487744,
  858. 786432: 2151678016,
  859. 851968: 4160,
  860. 917504: 4096,
  861. 983040: 2151682112,
  862. 32768: 2147487808,
  863. 98304: 64,
  864. 163840: 2151678016,
  865. 229376: 2147487744,
  866. 294912: 4198400,
  867. 360448: 2151682112,
  868. 425984: 0,
  869. 491520: 2151677952,
  870. 557056: 4096,
  871. 622592: 2151682048,
  872. 688128: 4194304,
  873. 753664: 4160,
  874. 819200: 2147483648,
  875. 884736: 4194368,
  876. 950272: 4198464,
  877. 1015808: 2147483712,
  878. 1048576: 4194368,
  879. 1114112: 4198400,
  880. 1179648: 2147483712,
  881. 1245184: 0,
  882. 1310720: 4160,
  883. 1376256: 2151678016,
  884. 1441792: 2151682048,
  885. 1507328: 2147487808,
  886. 1572864: 2151682112,
  887. 1638400: 2147483648,
  888. 1703936: 2151677952,
  889. 1769472: 4198464,
  890. 1835008: 2147487744,
  891. 1900544: 4194304,
  892. 1966080: 64,
  893. 2031616: 4096,
  894. 1081344: 2151677952,
  895. 1146880: 2151682112,
  896. 1212416: 0,
  897. 1277952: 4198400,
  898. 1343488: 4194368,
  899. 1409024: 2147483648,
  900. 1474560: 2147487808,
  901. 1540096: 64,
  902. 1605632: 2147483712,
  903. 1671168: 4096,
  904. 1736704: 2147487744,
  905. 1802240: 2151678016,
  906. 1867776: 4160,
  907. 1933312: 2151682048,
  908. 1998848: 4194304,
  909. 2064384: 4198464
  910. }, {
  911. "0": 128,
  912. 4096: 17039360,
  913. 8192: 262144,
  914. 12288: 536870912,
  915. 16384: 537133184,
  916. 20480: 16777344,
  917. 24576: 553648256,
  918. 28672: 262272,
  919. 32768: 16777216,
  920. 36864: 537133056,
  921. 40960: 536871040,
  922. 45056: 553910400,
  923. 49152: 553910272,
  924. 53248: 0,
  925. 57344: 17039488,
  926. 61440: 553648128,
  927. 2048: 17039488,
  928. 6144: 553648256,
  929. 10240: 128,
  930. 14336: 17039360,
  931. 18432: 262144,
  932. 22528: 537133184,
  933. 26624: 553910272,
  934. 30720: 536870912,
  935. 34816: 537133056,
  936. 38912: 0,
  937. 43008: 553910400,
  938. 47104: 16777344,
  939. 51200: 536871040,
  940. 55296: 553648128,
  941. 59392: 16777216,
  942. 63488: 262272,
  943. 65536: 262144,
  944. 69632: 128,
  945. 73728: 536870912,
  946. 77824: 553648256,
  947. 81920: 16777344,
  948. 86016: 553910272,
  949. 90112: 537133184,
  950. 94208: 16777216,
  951. 98304: 553910400,
  952. 102400: 553648128,
  953. 106496: 17039360,
  954. 110592: 537133056,
  955. 114688: 262272,
  956. 118784: 536871040,
  957. 122880: 0,
  958. 126976: 17039488,
  959. 67584: 553648256,
  960. 71680: 16777216,
  961. 75776: 17039360,
  962. 79872: 537133184,
  963. 83968: 536870912,
  964. 88064: 17039488,
  965. 92160: 128,
  966. 96256: 553910272,
  967. 100352: 262272,
  968. 104448: 553910400,
  969. 108544: 0,
  970. 112640: 553648128,
  971. 116736: 16777344,
  972. 120832: 262144,
  973. 124928: 537133056,
  974. 129024: 536871040
  975. }, {
  976. "0": 268435464,
  977. 256: 8192,
  978. 512: 270532608,
  979. 768: 270540808,
  980. 1024: 268443648,
  981. 1280: 2097152,
  982. 1536: 2097160,
  983. 1792: 268435456,
  984. 2048: 0,
  985. 2304: 268443656,
  986. 2560: 2105344,
  987. 2816: 8,
  988. 3072: 270532616,
  989. 3328: 2105352,
  990. 3584: 8200,
  991. 3840: 270540800,
  992. 128: 270532608,
  993. 384: 270540808,
  994. 640: 8,
  995. 896: 2097152,
  996. 1152: 2105352,
  997. 1408: 268435464,
  998. 1664: 268443648,
  999. 1920: 8200,
  1000. 2176: 2097160,
  1001. 2432: 8192,
  1002. 2688: 268443656,
  1003. 2944: 270532616,
  1004. 3200: 0,
  1005. 3456: 270540800,
  1006. 3712: 2105344,
  1007. 3968: 268435456,
  1008. 4096: 268443648,
  1009. 4352: 270532616,
  1010. 4608: 270540808,
  1011. 4864: 8200,
  1012. 5120: 2097152,
  1013. 5376: 268435456,
  1014. 5632: 268435464,
  1015. 5888: 2105344,
  1016. 6144: 2105352,
  1017. 6400: 0,
  1018. 6656: 8,
  1019. 6912: 270532608,
  1020. 7168: 8192,
  1021. 7424: 268443656,
  1022. 7680: 270540800,
  1023. 7936: 2097160,
  1024. 4224: 8,
  1025. 4480: 2105344,
  1026. 4736: 2097152,
  1027. 4992: 268435464,
  1028. 5248: 268443648,
  1029. 5504: 8200,
  1030. 5760: 270540808,
  1031. 6016: 270532608,
  1032. 6272: 270540800,
  1033. 6528: 270532616,
  1034. 6784: 8192,
  1035. 7040: 2105352,
  1036. 7296: 2097160,
  1037. 7552: 0,
  1038. 7808: 268435456,
  1039. 8064: 268443656
  1040. }, {
  1041. "0": 1048576,
  1042. 16: 33555457,
  1043. 32: 1024,
  1044. 48: 1049601,
  1045. 64: 34604033,
  1046. 80: 0,
  1047. 96: 1,
  1048. 112: 34603009,
  1049. 128: 33555456,
  1050. 144: 1048577,
  1051. 160: 33554433,
  1052. 176: 34604032,
  1053. 192: 34603008,
  1054. 208: 1025,
  1055. 224: 1049600,
  1056. 240: 33554432,
  1057. 8: 34603009,
  1058. 24: 0,
  1059. 40: 33555457,
  1060. 56: 34604032,
  1061. 72: 1048576,
  1062. 88: 33554433,
  1063. 104: 33554432,
  1064. 120: 1025,
  1065. 136: 1049601,
  1066. 152: 33555456,
  1067. 168: 34603008,
  1068. 184: 1048577,
  1069. 200: 1024,
  1070. 216: 34604033,
  1071. 232: 1,
  1072. 248: 1049600,
  1073. 256: 33554432,
  1074. 272: 1048576,
  1075. 288: 33555457,
  1076. 304: 34603009,
  1077. 320: 1048577,
  1078. 336: 33555456,
  1079. 352: 34604032,
  1080. 368: 1049601,
  1081. 384: 1025,
  1082. 400: 34604033,
  1083. 416: 1049600,
  1084. 432: 1,
  1085. 448: 0,
  1086. 464: 34603008,
  1087. 480: 33554433,
  1088. 496: 1024,
  1089. 264: 1049600,
  1090. 280: 33555457,
  1091. 296: 34603009,
  1092. 312: 1,
  1093. 328: 33554432,
  1094. 344: 1048576,
  1095. 360: 1025,
  1096. 376: 34604032,
  1097. 392: 33554433,
  1098. 408: 34603008,
  1099. 424: 0,
  1100. 440: 34604033,
  1101. 456: 1049601,
  1102. 472: 1024,
  1103. 488: 33555456,
  1104. 504: 1048577
  1105. }, {
  1106. "0": 134219808,
  1107. 1: 131072,
  1108. 2: 134217728,
  1109. 3: 32,
  1110. 4: 131104,
  1111. 5: 134350880,
  1112. 6: 134350848,
  1113. 7: 2048,
  1114. 8: 134348800,
  1115. 9: 134219776,
  1116. 10: 133120,
  1117. 11: 134348832,
  1118. 12: 2080,
  1119. 13: 0,
  1120. 14: 134217760,
  1121. 15: 133152,
  1122. 2147483648: 2048,
  1123. 2147483649: 134350880,
  1124. 2147483650: 134219808,
  1125. 2147483651: 134217728,
  1126. 2147483652: 134348800,
  1127. 2147483653: 133120,
  1128. 2147483654: 133152,
  1129. 2147483655: 32,
  1130. 2147483656: 134217760,
  1131. 2147483657: 2080,
  1132. 2147483658: 131104,
  1133. 2147483659: 134350848,
  1134. 2147483660: 0,
  1135. 2147483661: 134348832,
  1136. 2147483662: 134219776,
  1137. 2147483663: 131072,
  1138. 16: 133152,
  1139. 17: 134350848,
  1140. 18: 32,
  1141. 19: 2048,
  1142. 20: 134219776,
  1143. 21: 134217760,
  1144. 22: 134348832,
  1145. 23: 131072,
  1146. 24: 0,
  1147. 25: 131104,
  1148. 26: 134348800,
  1149. 27: 134219808,
  1150. 28: 134350880,
  1151. 29: 133120,
  1152. 30: 2080,
  1153. 31: 134217728,
  1154. 2147483664: 131072,
  1155. 2147483665: 2048,
  1156. 2147483666: 134348832,
  1157. 2147483667: 133152,
  1158. 2147483668: 32,
  1159. 2147483669: 134348800,
  1160. 2147483670: 134217728,
  1161. 2147483671: 134219808,
  1162. 2147483672: 134350880,
  1163. 2147483673: 134217760,
  1164. 2147483674: 134219776,
  1165. 2147483675: 0,
  1166. 2147483676: 133120,
  1167. 2147483677: 2080,
  1168. 2147483678: 131104,
  1169. 2147483679: 134350848
  1170. }],
  1171. x = [4160749569, 528482304, 33030144, 2064384, 129024, 8064, 504, 2147483679],
  1172. r = s.DES = n.extend({
  1173. _doReset: function() {
  1174. for (var b = this._key.words, a = [], c = 0; 56 > c; c++) {
  1175. var d = q[c] - 1;
  1176. a[c] = b[d >>> 5] >>> 31 - d % 32 & 1
  1177. }
  1178. b = this._subKeys = [];
  1179. for (d = 0; 16 > d; d++) {
  1180. for (var f = b[d] = [], l = v[d], c = 0; 24 > c; c++) f[c / 6 | 0] |= a[(w[c] - 1 + l) % 28] << 31 - c %
  1181. 6, f[4 + (c / 6 | 0)] |= a[28 + (w[c + 24] - 1 + l) % 28] << 31 - c % 6;
  1182. f[0] = f[0] << 1 | f[0] >>> 31;
  1183. for (c = 1; 7 > c; c++) f[c] >>>=
  1184. 4 * (c - 1) + 3;
  1185. f[7] = f[7] << 5 | f[7] >>> 27
  1186. }
  1187. a = this._invSubKeys = [];
  1188. for (c = 0; 16 > c; c++) a[c] = b[15 - c]
  1189. },
  1190. encryptBlock: function(b, a) {
  1191. this._doCryptBlock(b, a, this._subKeys)
  1192. },
  1193. decryptBlock: function(b, a) {
  1194. this._doCryptBlock(b, a, this._invSubKeys)
  1195. },
  1196. _doCryptBlock: function(e, a, c) {
  1197. this._lBlock = e[a];
  1198. this._rBlock = e[a + 1];
  1199. u.call(this, 4, 252645135);
  1200. u.call(this, 16, 65535);
  1201. l.call(this, 2, 858993459);
  1202. l.call(this, 8, 16711935);
  1203. u.call(this, 1, 1431655765);
  1204. for (var d = 0; 16 > d; d++) {
  1205. for (var f = c[d], n = this._lBlock, p = this._rBlock, q = 0, r = 0; 8 > r; r++) q |= b[r][((p ^
  1206. f[r]) & x[r]) >>> 0];
  1207. this._lBlock = p;
  1208. this._rBlock = n ^ q
  1209. }
  1210. c = this._lBlock;
  1211. this._lBlock = this._rBlock;
  1212. this._rBlock = c;
  1213. u.call(this, 1, 1431655765);
  1214. l.call(this, 8, 16711935);
  1215. l.call(this, 2, 858993459);
  1216. u.call(this, 16, 65535);
  1217. u.call(this, 4, 252645135);
  1218. e[a] = this._lBlock;
  1219. e[a + 1] = this._rBlock
  1220. },
  1221. keySize: 2,
  1222. ivSize: 2,
  1223. blockSize: 2
  1224. });
  1225. d.DES = n._createHelper(r);
  1226. s = s.TripleDES = n.extend({
  1227. _doReset: function() {
  1228. var b = this._key.words;
  1229. this._des1 = r.createEncryptor(p.create(b.slice(0, 2)));
  1230. this._des2 = r.createEncryptor(p.create(b.slice(2, 4)));
  1231. this._des3 =
  1232. r.createEncryptor(p.create(b.slice(4, 6)))
  1233. },
  1234. encryptBlock: function(b, a) {
  1235. this._des1.encryptBlock(b, a);
  1236. this._des2.decryptBlock(b, a);
  1237. this._des3.encryptBlock(b, a)
  1238. },
  1239. decryptBlock: function(b, a) {
  1240. this._des3.decryptBlock(b, a);
  1241. this._des2.encryptBlock(b, a);
  1242. this._des1.decryptBlock(b, a)
  1243. },
  1244. keySize: 6,
  1245. ivSize: 2,
  1246. blockSize: 2
  1247. });
  1248. d.TripleDES = n._createHelper(s)
  1249. })();
  1250. CryptoJS.mode.ECB = (function() {
  1251. var ECB = CryptoJS.lib.BlockCipherMode.extend();
  1252. ECB.Encryptor = ECB.extend({
  1253. processBlock: function(words, offset) {
  1254. this._cipher.encryptBlock(words, offset);
  1255. }
  1256. });
  1257. ECB.Decryptor = ECB.extend({
  1258. processBlock: function(words, offset) {
  1259. this._cipher.decryptBlock(words, offset);
  1260. }
  1261. });
  1262. return ECB;
  1263. }());