bxs-tools-ui 1.2.13 → 1.2.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/add-and-take/index.js +96 -98
- package/lib/adjust-baoe/index.js +96 -98
- package/lib/business-card/index.js +2 -2
- package/lib/canvas-poster/index.js +2 -2
- package/lib/index.js +242 -468
- package/lib/insure-calculate/index.js +4 -4
- package/lib/person-info/index.js +6 -6
- package/lib/product-info/index.js +101 -352
- package/package.json +2 -2
|
@@ -91,7 +91,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
|
91
91
|
/******/
|
|
92
92
|
/******/
|
|
93
93
|
/******/ // Load entry module and return exports
|
|
94
|
-
/******/ return __webpack_require__(__webpack_require__.s =
|
|
94
|
+
/******/ return __webpack_require__(__webpack_require__.s = 237);
|
|
95
95
|
/******/ })
|
|
96
96
|
/************************************************************************/
|
|
97
97
|
/******/ ([
|
|
@@ -2817,7 +2817,7 @@ function convertPersonData(allPersonsData, type) {
|
|
|
2817
2817
|
/* 10 */
|
|
2818
2818
|
/***/ (function(module, exports, __webpack_require__) {
|
|
2819
2819
|
|
|
2820
|
-
|
|
2820
|
+
;(function (root, factory) {
|
|
2821
2821
|
if (true) {
|
|
2822
2822
|
// CommonJS
|
|
2823
2823
|
module.exports = exports = factory();
|
|
@@ -2825,78 +2825,15 @@ function convertPersonData(allPersonsData, type) {
|
|
|
2825
2825
|
else {}
|
|
2826
2826
|
}(this, function () {
|
|
2827
2827
|
|
|
2828
|
-
/*globals window, global, require*/
|
|
2829
|
-
|
|
2830
2828
|
/**
|
|
2831
2829
|
* CryptoJS core components.
|
|
2832
2830
|
*/
|
|
2833
2831
|
var CryptoJS = CryptoJS || (function (Math, undefined) {
|
|
2834
|
-
|
|
2835
|
-
var crypto;
|
|
2836
|
-
|
|
2837
|
-
// Native crypto from window (Browser)
|
|
2838
|
-
if (typeof window !== 'undefined' && window.crypto) {
|
|
2839
|
-
crypto = window.crypto;
|
|
2840
|
-
}
|
|
2841
|
-
|
|
2842
|
-
// Native crypto in web worker (Browser)
|
|
2843
|
-
if (typeof self !== 'undefined' && self.crypto) {
|
|
2844
|
-
crypto = self.crypto;
|
|
2845
|
-
}
|
|
2846
|
-
|
|
2847
|
-
// Native crypto from worker
|
|
2848
|
-
if (typeof globalThis !== 'undefined' && globalThis.crypto) {
|
|
2849
|
-
crypto = globalThis.crypto;
|
|
2850
|
-
}
|
|
2851
|
-
|
|
2852
|
-
// Native (experimental IE 11) crypto from window (Browser)
|
|
2853
|
-
if (!crypto && typeof window !== 'undefined' && window.msCrypto) {
|
|
2854
|
-
crypto = window.msCrypto;
|
|
2855
|
-
}
|
|
2856
|
-
|
|
2857
|
-
// Native crypto from global (NodeJS)
|
|
2858
|
-
if (!crypto && typeof global !== 'undefined' && global.crypto) {
|
|
2859
|
-
crypto = global.crypto;
|
|
2860
|
-
}
|
|
2861
|
-
|
|
2862
|
-
// Native crypto import via require (NodeJS)
|
|
2863
|
-
if (!crypto && "function" === 'function') {
|
|
2864
|
-
try {
|
|
2865
|
-
crypto = __webpack_require__(211);
|
|
2866
|
-
} catch (err) {}
|
|
2867
|
-
}
|
|
2868
|
-
|
|
2869
|
-
/*
|
|
2870
|
-
* Cryptographically secure pseudorandom number generator
|
|
2871
|
-
*
|
|
2872
|
-
* As Math.random() is cryptographically not safe to use
|
|
2873
|
-
*/
|
|
2874
|
-
var cryptoSecureRandomInt = function () {
|
|
2875
|
-
if (crypto) {
|
|
2876
|
-
// Use getRandomValues method (Browser)
|
|
2877
|
-
if (typeof crypto.getRandomValues === 'function') {
|
|
2878
|
-
try {
|
|
2879
|
-
return crypto.getRandomValues(new Uint32Array(1))[0];
|
|
2880
|
-
} catch (err) {}
|
|
2881
|
-
}
|
|
2882
|
-
|
|
2883
|
-
// Use randomBytes method (NodeJS)
|
|
2884
|
-
if (typeof crypto.randomBytes === 'function') {
|
|
2885
|
-
try {
|
|
2886
|
-
return crypto.randomBytes(4).readInt32LE();
|
|
2887
|
-
} catch (err) {}
|
|
2888
|
-
}
|
|
2889
|
-
}
|
|
2890
|
-
|
|
2891
|
-
throw new Error('Native crypto module could not be used to get secure random number.');
|
|
2892
|
-
};
|
|
2893
|
-
|
|
2894
2832
|
/*
|
|
2895
|
-
* Local
|
|
2896
|
-
|
|
2833
|
+
* Local polyfil of Object.create
|
|
2897
2834
|
*/
|
|
2898
2835
|
var create = Object.create || (function () {
|
|
2899
|
-
function F() {}
|
|
2836
|
+
function F() {};
|
|
2900
2837
|
|
|
2901
2838
|
return function (obj) {
|
|
2902
2839
|
var subtype;
|
|
@@ -2909,7 +2846,7 @@ function convertPersonData(allPersonsData, type) {
|
|
|
2909
2846
|
|
|
2910
2847
|
return subtype;
|
|
2911
2848
|
};
|
|
2912
|
-
}())
|
|
2849
|
+
}())
|
|
2913
2850
|
|
|
2914
2851
|
/**
|
|
2915
2852
|
* CryptoJS namespace.
|
|
@@ -3120,8 +3057,8 @@ function convertPersonData(allPersonsData, type) {
|
|
|
3120
3057
|
}
|
|
3121
3058
|
} else {
|
|
3122
3059
|
// Copy one word at a time
|
|
3123
|
-
for (var
|
|
3124
|
-
thisWords[(thisSigBytes +
|
|
3060
|
+
for (var i = 0; i < thatSigBytes; i += 4) {
|
|
3061
|
+
thisWords[(thisSigBytes + i) >>> 2] = thatWords[i >>> 2];
|
|
3125
3062
|
}
|
|
3126
3063
|
}
|
|
3127
3064
|
this.sigBytes += thatSigBytes;
|
|
@@ -3179,8 +3116,26 @@ function convertPersonData(allPersonsData, type) {
|
|
|
3179
3116
|
random: function (nBytes) {
|
|
3180
3117
|
var words = [];
|
|
3181
3118
|
|
|
3182
|
-
|
|
3183
|
-
|
|
3119
|
+
var r = (function (m_w) {
|
|
3120
|
+
var m_w = m_w;
|
|
3121
|
+
var m_z = 0x3ade68b1;
|
|
3122
|
+
var mask = 0xffffffff;
|
|
3123
|
+
|
|
3124
|
+
return function () {
|
|
3125
|
+
m_z = (0x9069 * (m_z & 0xFFFF) + (m_z >> 0x10)) & mask;
|
|
3126
|
+
m_w = (0x4650 * (m_w & 0xFFFF) + (m_w >> 0x10)) & mask;
|
|
3127
|
+
var result = ((m_z << 0x10) + m_w) & mask;
|
|
3128
|
+
result /= 0x100000000;
|
|
3129
|
+
result += 0.5;
|
|
3130
|
+
return result * (Math.random() > .5 ? 1 : -1);
|
|
3131
|
+
}
|
|
3132
|
+
});
|
|
3133
|
+
|
|
3134
|
+
for (var i = 0, rcache; i < nBytes; i += 4) {
|
|
3135
|
+
var _r = r((rcache || Math.random()) * 0x100000000);
|
|
3136
|
+
|
|
3137
|
+
rcache = _r() * 0x3ade67b7;
|
|
3138
|
+
words.push((_r() * 0x100000000) | 0);
|
|
3184
3139
|
}
|
|
3185
3140
|
|
|
3186
3141
|
return new WordArray.init(words, nBytes);
|
|
@@ -3411,8 +3366,6 @@ function convertPersonData(allPersonsData, type) {
|
|
|
3411
3366
|
* var processedData = bufferedBlockAlgorithm._process(!!'flush');
|
|
3412
3367
|
*/
|
|
3413
3368
|
_process: function (doFlush) {
|
|
3414
|
-
var processedWords;
|
|
3415
|
-
|
|
3416
3369
|
// Shortcuts
|
|
3417
3370
|
var data = this._data;
|
|
3418
3371
|
var dataWords = data.words;
|
|
@@ -3445,7 +3398,7 @@ function convertPersonData(allPersonsData, type) {
|
|
|
3445
3398
|
}
|
|
3446
3399
|
|
|
3447
3400
|
// Remove processed words
|
|
3448
|
-
processedWords = dataWords.splice(0, nWordsReady);
|
|
3401
|
+
var processedWords = dataWords.splice(0, nWordsReady);
|
|
3449
3402
|
data.sigBytes -= nBytesReady;
|
|
3450
3403
|
}
|
|
3451
3404
|
|
|
@@ -3617,7 +3570,6 @@ function convertPersonData(allPersonsData, type) {
|
|
|
3617
3570
|
return CryptoJS;
|
|
3618
3571
|
|
|
3619
3572
|
}));
|
|
3620
|
-
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(80)))
|
|
3621
3573
|
|
|
3622
3574
|
/***/ }),
|
|
3623
3575
|
/* 11 */
|
|
@@ -4702,19 +4654,17 @@ function clearAddAndTakeAndAdjustBaoeData(productData) {
|
|
|
4702
4654
|
});
|
|
4703
4655
|
|
|
4704
4656
|
function xorBlock(words, offset, blockSize) {
|
|
4705
|
-
var block;
|
|
4706
|
-
|
|
4707
4657
|
// Shortcut
|
|
4708
4658
|
var iv = this._iv;
|
|
4709
4659
|
|
|
4710
4660
|
// Choose mixing block
|
|
4711
4661
|
if (iv) {
|
|
4712
|
-
block = iv;
|
|
4662
|
+
var block = iv;
|
|
4713
4663
|
|
|
4714
4664
|
// Remove IV for subsequent blocks
|
|
4715
4665
|
this._iv = undefined;
|
|
4716
4666
|
} else {
|
|
4717
|
-
block = this._prevBlock;
|
|
4667
|
+
var block = this._prevBlock;
|
|
4718
4668
|
}
|
|
4719
4669
|
|
|
4720
4670
|
// XOR blocks
|
|
@@ -4806,8 +4756,6 @@ function clearAddAndTakeAndAdjustBaoeData(productData) {
|
|
|
4806
4756
|
}),
|
|
4807
4757
|
|
|
4808
4758
|
reset: function () {
|
|
4809
|
-
var modeCreator;
|
|
4810
|
-
|
|
4811
4759
|
// Reset cipher
|
|
4812
4760
|
Cipher.reset.call(this);
|
|
4813
4761
|
|
|
@@ -4818,9 +4766,9 @@ function clearAddAndTakeAndAdjustBaoeData(productData) {
|
|
|
4818
4766
|
|
|
4819
4767
|
// Reset block mode
|
|
4820
4768
|
if (this._xformMode == this._ENC_XFORM_MODE) {
|
|
4821
|
-
modeCreator = mode.createEncryptor;
|
|
4769
|
+
var modeCreator = mode.createEncryptor;
|
|
4822
4770
|
} else /* if (this._xformMode == this._DEC_XFORM_MODE) */ {
|
|
4823
|
-
modeCreator = mode.createDecryptor;
|
|
4771
|
+
var modeCreator = mode.createDecryptor;
|
|
4824
4772
|
// Keep at least one block in the buffer for unpadding
|
|
4825
4773
|
this._minBufferSize = 1;
|
|
4826
4774
|
}
|
|
@@ -4838,8 +4786,6 @@ function clearAddAndTakeAndAdjustBaoeData(productData) {
|
|
|
4838
4786
|
},
|
|
4839
4787
|
|
|
4840
4788
|
_doFinalize: function () {
|
|
4841
|
-
var finalProcessedBlocks;
|
|
4842
|
-
|
|
4843
4789
|
// Shortcut
|
|
4844
4790
|
var padding = this.cfg.padding;
|
|
4845
4791
|
|
|
@@ -4849,10 +4795,10 @@ function clearAddAndTakeAndAdjustBaoeData(productData) {
|
|
|
4849
4795
|
padding.pad(this._data, this.blockSize);
|
|
4850
4796
|
|
|
4851
4797
|
// Process final blocks
|
|
4852
|
-
finalProcessedBlocks = this._process(!!'flush');
|
|
4798
|
+
var finalProcessedBlocks = this._process(!!'flush');
|
|
4853
4799
|
} else /* if (this._xformMode == this._DEC_XFORM_MODE) */ {
|
|
4854
4800
|
// Process final blocks
|
|
4855
|
-
finalProcessedBlocks = this._process(!!'flush');
|
|
4801
|
+
var finalProcessedBlocks = this._process(!!'flush');
|
|
4856
4802
|
|
|
4857
4803
|
// Unpad data
|
|
4858
4804
|
padding.unpad(finalProcessedBlocks);
|
|
@@ -4944,17 +4890,15 @@ function clearAddAndTakeAndAdjustBaoeData(productData) {
|
|
|
4944
4890
|
* var openSSLString = CryptoJS.format.OpenSSL.stringify(cipherParams);
|
|
4945
4891
|
*/
|
|
4946
4892
|
stringify: function (cipherParams) {
|
|
4947
|
-
var wordArray;
|
|
4948
|
-
|
|
4949
4893
|
// Shortcuts
|
|
4950
4894
|
var ciphertext = cipherParams.ciphertext;
|
|
4951
4895
|
var salt = cipherParams.salt;
|
|
4952
4896
|
|
|
4953
4897
|
// Format
|
|
4954
4898
|
if (salt) {
|
|
4955
|
-
wordArray = WordArray.create([0x53616c74, 0x65645f5f]).concat(salt).concat(ciphertext);
|
|
4899
|
+
var wordArray = WordArray.create([0x53616c74, 0x65645f5f]).concat(salt).concat(ciphertext);
|
|
4956
4900
|
} else {
|
|
4957
|
-
wordArray = ciphertext;
|
|
4901
|
+
var wordArray = ciphertext;
|
|
4958
4902
|
}
|
|
4959
4903
|
|
|
4960
4904
|
return wordArray.toString(Base64);
|
|
@@ -4974,8 +4918,6 @@ function clearAddAndTakeAndAdjustBaoeData(productData) {
|
|
|
4974
4918
|
* var cipherParams = CryptoJS.format.OpenSSL.parse(openSSLString);
|
|
4975
4919
|
*/
|
|
4976
4920
|
parse: function (openSSLStr) {
|
|
4977
|
-
var salt;
|
|
4978
|
-
|
|
4979
4921
|
// Parse base64
|
|
4980
4922
|
var ciphertext = Base64.parse(openSSLStr);
|
|
4981
4923
|
|
|
@@ -4985,7 +4927,7 @@ function clearAddAndTakeAndAdjustBaoeData(productData) {
|
|
|
4985
4927
|
// Test for salt
|
|
4986
4928
|
if (ciphertextWords[0] == 0x53616c74 && ciphertextWords[1] == 0x65645f5f) {
|
|
4987
4929
|
// Extract salt
|
|
4988
|
-
salt = WordArray.create(ciphertextWords.slice(2, 4));
|
|
4930
|
+
var salt = WordArray.create(ciphertextWords.slice(2, 4));
|
|
4989
4931
|
|
|
4990
4932
|
// Remove salt from ciphertext
|
|
4991
4933
|
ciphertextWords.splice(0, 4);
|
|
@@ -7514,8 +7456,6 @@ module.exports = function spread(callback) {
|
|
|
7514
7456
|
* var key = kdf.compute(password, salt);
|
|
7515
7457
|
*/
|
|
7516
7458
|
compute: function (password, salt) {
|
|
7517
|
-
var block;
|
|
7518
|
-
|
|
7519
7459
|
// Shortcut
|
|
7520
7460
|
var cfg = this.cfg;
|
|
7521
7461
|
|
|
@@ -7535,7 +7475,7 @@ module.exports = function spread(callback) {
|
|
|
7535
7475
|
if (block) {
|
|
7536
7476
|
hasher.update(block);
|
|
7537
7477
|
}
|
|
7538
|
-
block = hasher.update(password).finalize(salt);
|
|
7478
|
+
var block = hasher.update(password).finalize(salt);
|
|
7539
7479
|
hasher.reset();
|
|
7540
7480
|
|
|
7541
7481
|
// Iterations
|
|
@@ -7910,8 +7850,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
7910
7850
|
if (i % 4) {
|
|
7911
7851
|
var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << ((i % 4) * 2);
|
|
7912
7852
|
var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> (6 - (i % 4) * 2);
|
|
7913
|
-
|
|
7914
|
-
words[nBytes >>> 2] |= bitsCombined << (24 - (nBytes % 4) * 8);
|
|
7853
|
+
words[nBytes >>> 2] |= (bits1 | bits2) << (24 - (nBytes % 4) * 8);
|
|
7915
7854
|
nBytes++;
|
|
7916
7855
|
}
|
|
7917
7856
|
}
|
|
@@ -8194,32 +8133,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
8194
8133
|
/* 77 */,
|
|
8195
8134
|
/* 78 */,
|
|
8196
8135
|
/* 79 */,
|
|
8197
|
-
/* 80
|
|
8198
|
-
/***/ (function(module, exports) {
|
|
8199
|
-
|
|
8200
|
-
var g;
|
|
8201
|
-
|
|
8202
|
-
// This works in non-strict mode
|
|
8203
|
-
g = (function() {
|
|
8204
|
-
return this;
|
|
8205
|
-
})();
|
|
8206
|
-
|
|
8207
|
-
try {
|
|
8208
|
-
// This works if eval is allowed (see CSP)
|
|
8209
|
-
g = g || new Function("return this")();
|
|
8210
|
-
} catch (e) {
|
|
8211
|
-
// This works if the window reference is available
|
|
8212
|
-
if (typeof window === "object") g = window;
|
|
8213
|
-
}
|
|
8214
|
-
|
|
8215
|
-
// g can still be undefined, but nothing to do about it...
|
|
8216
|
-
// We return undefined, instead of nothing here, so it's
|
|
8217
|
-
// easier to handle this case. if(!global) { ...}
|
|
8218
|
-
|
|
8219
|
-
module.exports = g;
|
|
8220
|
-
|
|
8221
|
-
|
|
8222
|
-
/***/ }),
|
|
8136
|
+
/* 80 */,
|
|
8223
8137
|
/* 81 */,
|
|
8224
8138
|
/* 82 */,
|
|
8225
8139
|
/* 83 */,
|
|
@@ -8233,20 +8147,19 @@ module.exports = g;
|
|
|
8233
8147
|
/* 91 */,
|
|
8234
8148
|
/* 92 */,
|
|
8235
8149
|
/* 93 */,
|
|
8236
|
-
/* 94
|
|
8237
|
-
/* 95 */
|
|
8150
|
+
/* 94 */
|
|
8238
8151
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8239
8152
|
|
|
8240
8153
|
// extracted by mini-css-extract-plugin
|
|
8241
8154
|
|
|
8242
8155
|
/***/ }),
|
|
8243
|
-
/*
|
|
8156
|
+
/* 95 */
|
|
8244
8157
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8245
8158
|
|
|
8246
8159
|
;(function (root, factory, undef) {
|
|
8247
8160
|
if (true) {
|
|
8248
8161
|
// CommonJS
|
|
8249
|
-
module.exports = exports = factory(__webpack_require__(10), __webpack_require__(
|
|
8162
|
+
module.exports = exports = factory(__webpack_require__(10), __webpack_require__(97), __webpack_require__(211), __webpack_require__(212), __webpack_require__(75), __webpack_require__(76), __webpack_require__(173), __webpack_require__(186), __webpack_require__(213), __webpack_require__(187), __webpack_require__(214), __webpack_require__(215), __webpack_require__(216), __webpack_require__(174), __webpack_require__(217), __webpack_require__(73), __webpack_require__(15), __webpack_require__(218), __webpack_require__(219), __webpack_require__(220), __webpack_require__(221), __webpack_require__(222), __webpack_require__(223), __webpack_require__(224), __webpack_require__(225), __webpack_require__(226), __webpack_require__(227), __webpack_require__(228), __webpack_require__(229), __webpack_require__(230), __webpack_require__(231), __webpack_require__(232), __webpack_require__(233));
|
|
8250
8163
|
}
|
|
8251
8164
|
else {}
|
|
8252
8165
|
}(this, function (CryptoJS) {
|
|
@@ -8256,13 +8169,13 @@ module.exports = g;
|
|
|
8256
8169
|
}));
|
|
8257
8170
|
|
|
8258
8171
|
/***/ }),
|
|
8259
|
-
/*
|
|
8172
|
+
/* 96 */
|
|
8260
8173
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8261
8174
|
|
|
8262
8175
|
// extracted by mini-css-extract-plugin
|
|
8263
8176
|
|
|
8264
8177
|
/***/ }),
|
|
8265
|
-
/*
|
|
8178
|
+
/* 97 */
|
|
8266
8179
|
/***/ (function(module, exports, __webpack_require__) {
|
|
8267
8180
|
|
|
8268
8181
|
;(function (root, factory) {
|
|
@@ -8564,6 +8477,7 @@ module.exports = g;
|
|
|
8564
8477
|
}));
|
|
8565
8478
|
|
|
8566
8479
|
/***/ }),
|
|
8480
|
+
/* 98 */,
|
|
8567
8481
|
/* 99 */,
|
|
8568
8482
|
/* 100 */,
|
|
8569
8483
|
/* 101 */,
|
|
@@ -8641,7 +8555,7 @@ module.exports = g;
|
|
|
8641
8555
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
8642
8556
|
|
|
8643
8557
|
"use strict";
|
|
8644
|
-
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_title_item_vue_vue_type_style_index_0_id_0ca5c062_prod_lang_postcss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(
|
|
8558
|
+
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_title_item_vue_vue_type_style_index_0_id_0ca5c062_prod_lang_postcss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(94);
|
|
8645
8559
|
/* harmony import */ var _node_modules_mini_css_extract_plugin_dist_loader_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_title_item_vue_vue_type_style_index_0_id_0ca5c062_prod_lang_postcss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_mini_css_extract_plugin_dist_loader_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_postcss_loader_src_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_title_item_vue_vue_type_style_index_0_id_0ca5c062_prod_lang_postcss___WEBPACK_IMPORTED_MODULE_0__);
|
|
8646
8560
|
/* unused harmony reexport * */
|
|
8647
8561
|
|
|
@@ -9353,7 +9267,7 @@ module.exports = charenc;
|
|
|
9353
9267
|
;(function (root, factory, undef) {
|
|
9354
9268
|
if (true) {
|
|
9355
9269
|
// CommonJS
|
|
9356
|
-
module.exports = exports = factory(__webpack_require__(10), __webpack_require__(
|
|
9270
|
+
module.exports = exports = factory(__webpack_require__(10), __webpack_require__(97));
|
|
9357
9271
|
}
|
|
9358
9272
|
else {}
|
|
9359
9273
|
}(this, function (CryptoJS) {
|
|
@@ -9487,16 +9401,13 @@ module.exports = charenc;
|
|
|
9487
9401
|
|
|
9488
9402
|
// Rounds
|
|
9489
9403
|
for (var i = 0; i < 80; i++) {
|
|
9490
|
-
var Wil;
|
|
9491
|
-
var Wih;
|
|
9492
|
-
|
|
9493
9404
|
// Shortcut
|
|
9494
9405
|
var Wi = W[i];
|
|
9495
9406
|
|
|
9496
9407
|
// Extend message
|
|
9497
9408
|
if (i < 16) {
|
|
9498
|
-
Wih = Wi.high = M[offset + i * 2] | 0;
|
|
9499
|
-
Wil = Wi.low = M[offset + i * 2 + 1] | 0;
|
|
9409
|
+
var Wih = Wi.high = M[offset + i * 2] | 0;
|
|
9410
|
+
var Wil = Wi.low = M[offset + i * 2 + 1] | 0;
|
|
9500
9411
|
} else {
|
|
9501
9412
|
// Gamma0
|
|
9502
9413
|
var gamma0x = W[i - 15];
|
|
@@ -9521,12 +9432,12 @@ module.exports = charenc;
|
|
|
9521
9432
|
var Wi16h = Wi16.high;
|
|
9522
9433
|
var Wi16l = Wi16.low;
|
|
9523
9434
|
|
|
9524
|
-
Wil = gamma0l + Wi7l;
|
|
9525
|
-
Wih = gamma0h + Wi7h + ((Wil >>> 0) < (gamma0l >>> 0) ? 1 : 0);
|
|
9526
|
-
Wil = Wil + gamma1l;
|
|
9527
|
-
Wih = Wih + gamma1h + ((Wil >>> 0) < (gamma1l >>> 0) ? 1 : 0);
|
|
9528
|
-
Wil = Wil + Wi16l;
|
|
9529
|
-
Wih = Wih + Wi16h + ((Wil >>> 0) < (Wi16l >>> 0) ? 1 : 0);
|
|
9435
|
+
var Wil = gamma0l + Wi7l;
|
|
9436
|
+
var Wih = gamma0h + Wi7h + ((Wil >>> 0) < (gamma0l >>> 0) ? 1 : 0);
|
|
9437
|
+
var Wil = Wil + gamma1l;
|
|
9438
|
+
var Wih = Wih + gamma1h + ((Wil >>> 0) < (gamma1l >>> 0) ? 1 : 0);
|
|
9439
|
+
var Wil = Wil + Wi16l;
|
|
9440
|
+
var Wih = Wih + Wi16h + ((Wil >>> 0) < (Wi16l >>> 0) ? 1 : 0);
|
|
9530
9441
|
|
|
9531
9442
|
Wi.high = Wih;
|
|
9532
9443
|
Wi.low = Wil;
|
|
@@ -9827,12 +9738,6 @@ function isSlowBuffer (obj) {
|
|
|
9827
9738
|
|
|
9828
9739
|
/***/ }),
|
|
9829
9740
|
/* 211 */
|
|
9830
|
-
/***/ (function(module, exports) {
|
|
9831
|
-
|
|
9832
|
-
/* (ignored) */
|
|
9833
|
-
|
|
9834
|
-
/***/ }),
|
|
9835
|
-
/* 212 */
|
|
9836
9741
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9837
9742
|
|
|
9838
9743
|
;(function (root, factory) {
|
|
@@ -9906,7 +9811,7 @@ function isSlowBuffer (obj) {
|
|
|
9906
9811
|
}));
|
|
9907
9812
|
|
|
9908
9813
|
/***/ }),
|
|
9909
|
-
/*
|
|
9814
|
+
/* 212 */
|
|
9910
9815
|
/***/ (function(module, exports, __webpack_require__) {
|
|
9911
9816
|
|
|
9912
9817
|
;(function (root, factory) {
|
|
@@ -10053,145 +9958,7 @@ function isSlowBuffer (obj) {
|
|
|
10053
9958
|
}));
|
|
10054
9959
|
|
|
10055
9960
|
/***/ }),
|
|
10056
|
-
/*
|
|
10057
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
10058
|
-
|
|
10059
|
-
;(function (root, factory) {
|
|
10060
|
-
if (true) {
|
|
10061
|
-
// CommonJS
|
|
10062
|
-
module.exports = exports = factory(__webpack_require__(10));
|
|
10063
|
-
}
|
|
10064
|
-
else {}
|
|
10065
|
-
}(this, function (CryptoJS) {
|
|
10066
|
-
|
|
10067
|
-
(function () {
|
|
10068
|
-
// Shortcuts
|
|
10069
|
-
var C = CryptoJS;
|
|
10070
|
-
var C_lib = C.lib;
|
|
10071
|
-
var WordArray = C_lib.WordArray;
|
|
10072
|
-
var C_enc = C.enc;
|
|
10073
|
-
|
|
10074
|
-
/**
|
|
10075
|
-
* Base64url encoding strategy.
|
|
10076
|
-
*/
|
|
10077
|
-
var Base64url = C_enc.Base64url = {
|
|
10078
|
-
/**
|
|
10079
|
-
* Converts a word array to a Base64url string.
|
|
10080
|
-
*
|
|
10081
|
-
* @param {WordArray} wordArray The word array.
|
|
10082
|
-
*
|
|
10083
|
-
* @param {boolean} urlSafe Whether to use url safe
|
|
10084
|
-
*
|
|
10085
|
-
* @return {string} The Base64url string.
|
|
10086
|
-
*
|
|
10087
|
-
* @static
|
|
10088
|
-
*
|
|
10089
|
-
* @example
|
|
10090
|
-
*
|
|
10091
|
-
* var base64String = CryptoJS.enc.Base64url.stringify(wordArray);
|
|
10092
|
-
*/
|
|
10093
|
-
stringify: function (wordArray, urlSafe=true) {
|
|
10094
|
-
// Shortcuts
|
|
10095
|
-
var words = wordArray.words;
|
|
10096
|
-
var sigBytes = wordArray.sigBytes;
|
|
10097
|
-
var map = urlSafe ? this._safe_map : this._map;
|
|
10098
|
-
|
|
10099
|
-
// Clamp excess bits
|
|
10100
|
-
wordArray.clamp();
|
|
10101
|
-
|
|
10102
|
-
// Convert
|
|
10103
|
-
var base64Chars = [];
|
|
10104
|
-
for (var i = 0; i < sigBytes; i += 3) {
|
|
10105
|
-
var byte1 = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff;
|
|
10106
|
-
var byte2 = (words[(i + 1) >>> 2] >>> (24 - ((i + 1) % 4) * 8)) & 0xff;
|
|
10107
|
-
var byte3 = (words[(i + 2) >>> 2] >>> (24 - ((i + 2) % 4) * 8)) & 0xff;
|
|
10108
|
-
|
|
10109
|
-
var triplet = (byte1 << 16) | (byte2 << 8) | byte3;
|
|
10110
|
-
|
|
10111
|
-
for (var j = 0; (j < 4) && (i + j * 0.75 < sigBytes); j++) {
|
|
10112
|
-
base64Chars.push(map.charAt((triplet >>> (6 * (3 - j))) & 0x3f));
|
|
10113
|
-
}
|
|
10114
|
-
}
|
|
10115
|
-
|
|
10116
|
-
// Add padding
|
|
10117
|
-
var paddingChar = map.charAt(64);
|
|
10118
|
-
if (paddingChar) {
|
|
10119
|
-
while (base64Chars.length % 4) {
|
|
10120
|
-
base64Chars.push(paddingChar);
|
|
10121
|
-
}
|
|
10122
|
-
}
|
|
10123
|
-
|
|
10124
|
-
return base64Chars.join('');
|
|
10125
|
-
},
|
|
10126
|
-
|
|
10127
|
-
/**
|
|
10128
|
-
* Converts a Base64url string to a word array.
|
|
10129
|
-
*
|
|
10130
|
-
* @param {string} base64Str The Base64url string.
|
|
10131
|
-
*
|
|
10132
|
-
* @param {boolean} urlSafe Whether to use url safe
|
|
10133
|
-
*
|
|
10134
|
-
* @return {WordArray} The word array.
|
|
10135
|
-
*
|
|
10136
|
-
* @static
|
|
10137
|
-
*
|
|
10138
|
-
* @example
|
|
10139
|
-
*
|
|
10140
|
-
* var wordArray = CryptoJS.enc.Base64url.parse(base64String);
|
|
10141
|
-
*/
|
|
10142
|
-
parse: function (base64Str, urlSafe=true) {
|
|
10143
|
-
// Shortcuts
|
|
10144
|
-
var base64StrLength = base64Str.length;
|
|
10145
|
-
var map = urlSafe ? this._safe_map : this._map;
|
|
10146
|
-
var reverseMap = this._reverseMap;
|
|
10147
|
-
|
|
10148
|
-
if (!reverseMap) {
|
|
10149
|
-
reverseMap = this._reverseMap = [];
|
|
10150
|
-
for (var j = 0; j < map.length; j++) {
|
|
10151
|
-
reverseMap[map.charCodeAt(j)] = j;
|
|
10152
|
-
}
|
|
10153
|
-
}
|
|
10154
|
-
|
|
10155
|
-
// Ignore padding
|
|
10156
|
-
var paddingChar = map.charAt(64);
|
|
10157
|
-
if (paddingChar) {
|
|
10158
|
-
var paddingIndex = base64Str.indexOf(paddingChar);
|
|
10159
|
-
if (paddingIndex !== -1) {
|
|
10160
|
-
base64StrLength = paddingIndex;
|
|
10161
|
-
}
|
|
10162
|
-
}
|
|
10163
|
-
|
|
10164
|
-
// Convert
|
|
10165
|
-
return parseLoop(base64Str, base64StrLength, reverseMap);
|
|
10166
|
-
|
|
10167
|
-
},
|
|
10168
|
-
|
|
10169
|
-
_map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=',
|
|
10170
|
-
_safe_map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_',
|
|
10171
|
-
};
|
|
10172
|
-
|
|
10173
|
-
function parseLoop(base64Str, base64StrLength, reverseMap) {
|
|
10174
|
-
var words = [];
|
|
10175
|
-
var nBytes = 0;
|
|
10176
|
-
for (var i = 0; i < base64StrLength; i++) {
|
|
10177
|
-
if (i % 4) {
|
|
10178
|
-
var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << ((i % 4) * 2);
|
|
10179
|
-
var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> (6 - (i % 4) * 2);
|
|
10180
|
-
var bitsCombined = bits1 | bits2;
|
|
10181
|
-
words[nBytes >>> 2] |= bitsCombined << (24 - (nBytes % 4) * 8);
|
|
10182
|
-
nBytes++;
|
|
10183
|
-
}
|
|
10184
|
-
}
|
|
10185
|
-
return WordArray.create(words, nBytes);
|
|
10186
|
-
}
|
|
10187
|
-
}());
|
|
10188
|
-
|
|
10189
|
-
return CryptoJS.enc.Base64url;
|
|
10190
|
-
|
|
10191
|
-
}));
|
|
10192
|
-
|
|
10193
|
-
/***/ }),
|
|
10194
|
-
/* 215 */
|
|
9961
|
+
/* 213 */
|
|
10195
9962
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10196
9963
|
|
|
10197
9964
|
;(function (root, factory, undef) {
|
|
@@ -10269,13 +10036,13 @@ function isSlowBuffer (obj) {
|
|
|
10269
10036
|
}));
|
|
10270
10037
|
|
|
10271
10038
|
/***/ }),
|
|
10272
|
-
/*
|
|
10039
|
+
/* 214 */
|
|
10273
10040
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10274
10041
|
|
|
10275
10042
|
;(function (root, factory, undef) {
|
|
10276
10043
|
if (true) {
|
|
10277
10044
|
// CommonJS
|
|
10278
|
-
module.exports = exports = factory(__webpack_require__(10), __webpack_require__(
|
|
10045
|
+
module.exports = exports = factory(__webpack_require__(10), __webpack_require__(97), __webpack_require__(187));
|
|
10279
10046
|
}
|
|
10280
10047
|
else {}
|
|
10281
10048
|
}(this, function (CryptoJS) {
|
|
@@ -10350,13 +10117,13 @@ function isSlowBuffer (obj) {
|
|
|
10350
10117
|
}));
|
|
10351
10118
|
|
|
10352
10119
|
/***/ }),
|
|
10353
|
-
/*
|
|
10120
|
+
/* 215 */
|
|
10354
10121
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10355
10122
|
|
|
10356
10123
|
;(function (root, factory, undef) {
|
|
10357
10124
|
if (true) {
|
|
10358
10125
|
// CommonJS
|
|
10359
|
-
module.exports = exports = factory(__webpack_require__(10), __webpack_require__(
|
|
10126
|
+
module.exports = exports = factory(__webpack_require__(10), __webpack_require__(97));
|
|
10360
10127
|
}
|
|
10361
10128
|
else {}
|
|
10362
10129
|
}(this, function (CryptoJS) {
|
|
@@ -10521,9 +10288,6 @@ function isSlowBuffer (obj) {
|
|
|
10521
10288
|
|
|
10522
10289
|
// Rho Pi
|
|
10523
10290
|
for (var laneIndex = 1; laneIndex < 25; laneIndex++) {
|
|
10524
|
-
var tMsw;
|
|
10525
|
-
var tLsw;
|
|
10526
|
-
|
|
10527
10291
|
// Shortcuts
|
|
10528
10292
|
var lane = state[laneIndex];
|
|
10529
10293
|
var laneMsw = lane.high;
|
|
@@ -10532,11 +10296,11 @@ function isSlowBuffer (obj) {
|
|
|
10532
10296
|
|
|
10533
10297
|
// Rotate lanes
|
|
10534
10298
|
if (rhoOffset < 32) {
|
|
10535
|
-
tMsw = (laneMsw << rhoOffset) | (laneLsw >>> (32 - rhoOffset));
|
|
10536
|
-
tLsw = (laneLsw << rhoOffset) | (laneMsw >>> (32 - rhoOffset));
|
|
10299
|
+
var tMsw = (laneMsw << rhoOffset) | (laneLsw >>> (32 - rhoOffset));
|
|
10300
|
+
var tLsw = (laneLsw << rhoOffset) | (laneMsw >>> (32 - rhoOffset));
|
|
10537
10301
|
} else /* if (rhoOffset >= 32) */ {
|
|
10538
|
-
tMsw = (laneLsw << (rhoOffset - 32)) | (laneMsw >>> (64 - rhoOffset));
|
|
10539
|
-
tLsw = (laneMsw << (rhoOffset - 32)) | (laneLsw >>> (64 - rhoOffset));
|
|
10302
|
+
var tMsw = (laneLsw << (rhoOffset - 32)) | (laneMsw >>> (64 - rhoOffset));
|
|
10303
|
+
var tLsw = (laneMsw << (rhoOffset - 32)) | (laneLsw >>> (64 - rhoOffset));
|
|
10540
10304
|
}
|
|
10541
10305
|
|
|
10542
10306
|
// Transpose lanes
|
|
@@ -10571,7 +10335,7 @@ function isSlowBuffer (obj) {
|
|
|
10571
10335
|
var lane = state[0];
|
|
10572
10336
|
var roundConstant = ROUND_CONSTANTS[round];
|
|
10573
10337
|
lane.high ^= roundConstant.high;
|
|
10574
|
-
lane.low ^= roundConstant.low
|
|
10338
|
+
lane.low ^= roundConstant.low;;
|
|
10575
10339
|
}
|
|
10576
10340
|
},
|
|
10577
10341
|
|
|
@@ -10674,7 +10438,7 @@ function isSlowBuffer (obj) {
|
|
|
10674
10438
|
}));
|
|
10675
10439
|
|
|
10676
10440
|
/***/ }),
|
|
10677
|
-
/*
|
|
10441
|
+
/* 216 */
|
|
10678
10442
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10679
10443
|
|
|
10680
10444
|
;(function (root, factory) {
|
|
@@ -10939,7 +10703,7 @@ function isSlowBuffer (obj) {
|
|
|
10939
10703
|
}));
|
|
10940
10704
|
|
|
10941
10705
|
/***/ }),
|
|
10942
|
-
/*
|
|
10706
|
+
/* 217 */
|
|
10943
10707
|
/***/ (function(module, exports, __webpack_require__) {
|
|
10944
10708
|
|
|
10945
10709
|
;(function (root, factory, undef) {
|
|
@@ -11082,7 +10846,7 @@ function isSlowBuffer (obj) {
|
|
|
11082
10846
|
}));
|
|
11083
10847
|
|
|
11084
10848
|
/***/ }),
|
|
11085
|
-
/*
|
|
10849
|
+
/* 218 */
|
|
11086
10850
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11087
10851
|
|
|
11088
10852
|
;(function (root, factory, undef) {
|
|
@@ -11129,19 +10893,17 @@ function isSlowBuffer (obj) {
|
|
|
11129
10893
|
});
|
|
11130
10894
|
|
|
11131
10895
|
function generateKeystreamAndEncrypt(words, offset, blockSize, cipher) {
|
|
11132
|
-
var keystream;
|
|
11133
|
-
|
|
11134
10896
|
// Shortcut
|
|
11135
10897
|
var iv = this._iv;
|
|
11136
10898
|
|
|
11137
10899
|
// Generate keystream
|
|
11138
10900
|
if (iv) {
|
|
11139
|
-
keystream = iv.slice(0);
|
|
10901
|
+
var keystream = iv.slice(0);
|
|
11140
10902
|
|
|
11141
10903
|
// Remove IV for subsequent blocks
|
|
11142
10904
|
this._iv = undefined;
|
|
11143
10905
|
} else {
|
|
11144
|
-
keystream = this._prevBlock;
|
|
10906
|
+
var keystream = this._prevBlock;
|
|
11145
10907
|
}
|
|
11146
10908
|
cipher.encryptBlock(keystream, 0);
|
|
11147
10909
|
|
|
@@ -11160,7 +10922,7 @@ function isSlowBuffer (obj) {
|
|
|
11160
10922
|
}));
|
|
11161
10923
|
|
|
11162
10924
|
/***/ }),
|
|
11163
|
-
/*
|
|
10925
|
+
/* 219 */
|
|
11164
10926
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11165
10927
|
|
|
11166
10928
|
;(function (root, factory, undef) {
|
|
@@ -11216,7 +10978,7 @@ function isSlowBuffer (obj) {
|
|
|
11216
10978
|
}));
|
|
11217
10979
|
|
|
11218
10980
|
/***/ }),
|
|
11219
|
-
/*
|
|
10981
|
+
/* 220 */
|
|
11220
10982
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11221
10983
|
|
|
11222
10984
|
;(function (root, factory, undef) {
|
|
@@ -11330,7 +11092,7 @@ function isSlowBuffer (obj) {
|
|
|
11330
11092
|
}));
|
|
11331
11093
|
|
|
11332
11094
|
/***/ }),
|
|
11333
|
-
/*
|
|
11095
|
+
/* 221 */
|
|
11334
11096
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11335
11097
|
|
|
11336
11098
|
;(function (root, factory, undef) {
|
|
@@ -11382,7 +11144,7 @@ function isSlowBuffer (obj) {
|
|
|
11382
11144
|
}));
|
|
11383
11145
|
|
|
11384
11146
|
/***/ }),
|
|
11385
|
-
/*
|
|
11147
|
+
/* 222 */
|
|
11386
11148
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11387
11149
|
|
|
11388
11150
|
;(function (root, factory, undef) {
|
|
@@ -11420,7 +11182,7 @@ function isSlowBuffer (obj) {
|
|
|
11420
11182
|
}));
|
|
11421
11183
|
|
|
11422
11184
|
/***/ }),
|
|
11423
|
-
/*
|
|
11185
|
+
/* 223 */
|
|
11424
11186
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11425
11187
|
|
|
11426
11188
|
;(function (root, factory, undef) {
|
|
@@ -11467,7 +11229,7 @@ function isSlowBuffer (obj) {
|
|
|
11467
11229
|
}));
|
|
11468
11230
|
|
|
11469
11231
|
/***/ }),
|
|
11470
|
-
/*
|
|
11232
|
+
/* 224 */
|
|
11471
11233
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11472
11234
|
|
|
11473
11235
|
;(function (root, factory, undef) {
|
|
@@ -11509,7 +11271,7 @@ function isSlowBuffer (obj) {
|
|
|
11509
11271
|
}));
|
|
11510
11272
|
|
|
11511
11273
|
/***/ }),
|
|
11512
|
-
/*
|
|
11274
|
+
/* 225 */
|
|
11513
11275
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11514
11276
|
|
|
11515
11277
|
;(function (root, factory, undef) {
|
|
@@ -11547,7 +11309,7 @@ function isSlowBuffer (obj) {
|
|
|
11547
11309
|
}));
|
|
11548
11310
|
|
|
11549
11311
|
/***/ }),
|
|
11550
|
-
/*
|
|
11312
|
+
/* 226 */
|
|
11551
11313
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11552
11314
|
|
|
11553
11315
|
;(function (root, factory, undef) {
|
|
@@ -11577,12 +11339,10 @@ function isSlowBuffer (obj) {
|
|
|
11577
11339
|
|
|
11578
11340
|
// Unpad
|
|
11579
11341
|
var i = data.sigBytes - 1;
|
|
11580
|
-
|
|
11581
|
-
|
|
11582
|
-
data.sigBytes = i + 1;
|
|
11583
|
-
break;
|
|
11584
|
-
}
|
|
11342
|
+
while (!((dataWords[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff)) {
|
|
11343
|
+
i--;
|
|
11585
11344
|
}
|
|
11345
|
+
data.sigBytes = i + 1;
|
|
11586
11346
|
}
|
|
11587
11347
|
};
|
|
11588
11348
|
|
|
@@ -11592,7 +11352,7 @@ function isSlowBuffer (obj) {
|
|
|
11592
11352
|
}));
|
|
11593
11353
|
|
|
11594
11354
|
/***/ }),
|
|
11595
|
-
/*
|
|
11355
|
+
/* 227 */
|
|
11596
11356
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11597
11357
|
|
|
11598
11358
|
;(function (root, factory, undef) {
|
|
@@ -11620,7 +11380,7 @@ function isSlowBuffer (obj) {
|
|
|
11620
11380
|
}));
|
|
11621
11381
|
|
|
11622
11382
|
/***/ }),
|
|
11623
|
-
/*
|
|
11383
|
+
/* 228 */
|
|
11624
11384
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11625
11385
|
|
|
11626
11386
|
;(function (root, factory, undef) {
|
|
@@ -11684,7 +11444,7 @@ function isSlowBuffer (obj) {
|
|
|
11684
11444
|
}));
|
|
11685
11445
|
|
|
11686
11446
|
/***/ }),
|
|
11687
|
-
/*
|
|
11447
|
+
/* 229 */
|
|
11688
11448
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11689
11449
|
|
|
11690
11450
|
;(function (root, factory, undef) {
|
|
@@ -11773,8 +11533,6 @@ function isSlowBuffer (obj) {
|
|
|
11773
11533
|
*/
|
|
11774
11534
|
var AES = C_algo.AES = BlockCipher.extend({
|
|
11775
11535
|
_doReset: function () {
|
|
11776
|
-
var t;
|
|
11777
|
-
|
|
11778
11536
|
// Skip reset of nRounds has been set before and key did not change
|
|
11779
11537
|
if (this._nRounds && this._keyPriorReset === this._key) {
|
|
11780
11538
|
return;
|
|
@@ -11797,7 +11555,7 @@ function isSlowBuffer (obj) {
|
|
|
11797
11555
|
if (ksRow < keySize) {
|
|
11798
11556
|
keySchedule[ksRow] = keyWords[ksRow];
|
|
11799
11557
|
} else {
|
|
11800
|
-
t = keySchedule[ksRow - 1];
|
|
11558
|
+
var t = keySchedule[ksRow - 1];
|
|
11801
11559
|
|
|
11802
11560
|
if (!(ksRow % keySize)) {
|
|
11803
11561
|
// Rot word
|
|
@@ -11916,7 +11674,7 @@ function isSlowBuffer (obj) {
|
|
|
11916
11674
|
}));
|
|
11917
11675
|
|
|
11918
11676
|
/***/ }),
|
|
11919
|
-
/*
|
|
11677
|
+
/* 230 */
|
|
11920
11678
|
/***/ (function(module, exports, __webpack_require__) {
|
|
11921
11679
|
|
|
11922
11680
|
;(function (root, factory, undef) {
|
|
@@ -12641,20 +12399,11 @@ function isSlowBuffer (obj) {
|
|
|
12641
12399
|
// Shortcuts
|
|
12642
12400
|
var key = this._key;
|
|
12643
12401
|
var keyWords = key.words;
|
|
12644
|
-
// Make sure the key length is valid (64, 128 or >= 192 bit)
|
|
12645
|
-
if (keyWords.length !== 2 && keyWords.length !== 4 && keyWords.length < 6) {
|
|
12646
|
-
throw new Error('Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.');
|
|
12647
|
-
}
|
|
12648
|
-
|
|
12649
|
-
// Extend the key according to the keying options defined in 3DES standard
|
|
12650
|
-
var key1 = keyWords.slice(0, 2);
|
|
12651
|
-
var key2 = keyWords.length < 4 ? keyWords.slice(0, 2) : keyWords.slice(2, 4);
|
|
12652
|
-
var key3 = keyWords.length < 6 ? keyWords.slice(0, 2) : keyWords.slice(4, 6);
|
|
12653
12402
|
|
|
12654
12403
|
// Create DES instances
|
|
12655
|
-
this._des1 = DES.createEncryptor(WordArray.create(
|
|
12656
|
-
this._des2 = DES.createEncryptor(WordArray.create(
|
|
12657
|
-
this._des3 = DES.createEncryptor(WordArray.create(
|
|
12404
|
+
this._des1 = DES.createEncryptor(WordArray.create(keyWords.slice(0, 2)));
|
|
12405
|
+
this._des2 = DES.createEncryptor(WordArray.create(keyWords.slice(2, 4)));
|
|
12406
|
+
this._des3 = DES.createEncryptor(WordArray.create(keyWords.slice(4, 6)));
|
|
12658
12407
|
},
|
|
12659
12408
|
|
|
12660
12409
|
encryptBlock: function (M, offset) {
|
|
@@ -12693,7 +12442,7 @@ function isSlowBuffer (obj) {
|
|
|
12693
12442
|
}));
|
|
12694
12443
|
|
|
12695
12444
|
/***/ }),
|
|
12696
|
-
/*
|
|
12445
|
+
/* 231 */
|
|
12697
12446
|
/***/ (function(module, exports, __webpack_require__) {
|
|
12698
12447
|
|
|
12699
12448
|
;(function (root, factory, undef) {
|
|
@@ -12830,7 +12579,7 @@ function isSlowBuffer (obj) {
|
|
|
12830
12579
|
}));
|
|
12831
12580
|
|
|
12832
12581
|
/***/ }),
|
|
12833
|
-
/*
|
|
12582
|
+
/* 232 */
|
|
12834
12583
|
/***/ (function(module, exports, __webpack_require__) {
|
|
12835
12584
|
|
|
12836
12585
|
;(function (root, factory, undef) {
|
|
@@ -13020,7 +12769,7 @@ function isSlowBuffer (obj) {
|
|
|
13020
12769
|
}));
|
|
13021
12770
|
|
|
13022
12771
|
/***/ }),
|
|
13023
|
-
/*
|
|
12772
|
+
/* 233 */
|
|
13024
12773
|
/***/ (function(module, exports, __webpack_require__) {
|
|
13025
12774
|
|
|
13026
12775
|
;(function (root, factory, undef) {
|
|
@@ -13208,7 +12957,7 @@ function isSlowBuffer (obj) {
|
|
|
13208
12957
|
}));
|
|
13209
12958
|
|
|
13210
12959
|
/***/ }),
|
|
13211
|
-
/*
|
|
12960
|
+
/* 234 */
|
|
13212
12961
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
13213
12962
|
|
|
13214
12963
|
"use strict";
|
|
@@ -13218,9 +12967,9 @@ function isSlowBuffer (obj) {
|
|
|
13218
12967
|
|
|
13219
12968
|
|
|
13220
12969
|
/***/ }),
|
|
13221
|
-
/*
|
|
13222
|
-
/*
|
|
13223
|
-
/*
|
|
12970
|
+
/* 235 */,
|
|
12971
|
+
/* 236 */,
|
|
12972
|
+
/* 237 */
|
|
13224
12973
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
13225
12974
|
|
|
13226
12975
|
"use strict";
|
|
@@ -13537,7 +13286,7 @@ var md5 = __webpack_require__(175);
|
|
|
13537
13286
|
var md5_default = /*#__PURE__*/__webpack_require__.n(md5);
|
|
13538
13287
|
|
|
13539
13288
|
// EXTERNAL MODULE: ./node_modules/crypto-js/index.js
|
|
13540
|
-
var crypto_js = __webpack_require__(
|
|
13289
|
+
var crypto_js = __webpack_require__(95);
|
|
13541
13290
|
var crypto_js_default = /*#__PURE__*/__webpack_require__.n(crypto_js);
|
|
13542
13291
|
|
|
13543
13292
|
// CONCATENATED MODULE: ./src/js/md5Token.js
|
|
@@ -14102,7 +13851,7 @@ var title_item = __webpack_require__(74);
|
|
|
14102
13851
|
var external_root_bxs_commonjs_bxs_ui_vue_commonjs2_bxs_ui_vue_amd_bxs_ui_vue_ = __webpack_require__(3);
|
|
14103
13852
|
|
|
14104
13853
|
// EXTERNAL MODULE: ./node_modules/bxs-ui-vue/esm/index.css
|
|
14105
|
-
var esm = __webpack_require__(
|
|
13854
|
+
var esm = __webpack_require__(96);
|
|
14106
13855
|
|
|
14107
13856
|
// CONCATENATED MODULE: ./node_modules/ts-loader??ref--0!./node_modules/vue-loader/lib??vue-loader-options!./packages/product-info/index.vue?vue&type=script&lang=ts&
|
|
14108
13857
|
var product_infovue_type_script_lang_ts_a;
|
|
@@ -14465,7 +14214,7 @@ var product_infovue_type_script_lang_ts_BxtProductInfo = (function (_super) {
|
|
|
14465
14214
|
// CONCATENATED MODULE: ./packages/product-info/index.vue?vue&type=script&lang=ts&
|
|
14466
14215
|
/* harmony default export */ var packages_product_infovue_type_script_lang_ts_ = (product_infovue_type_script_lang_ts_);
|
|
14467
14216
|
// EXTERNAL MODULE: ./packages/product-info/index.vue?vue&type=style&index=0&id=1e5d92ce&prod&lang=css&
|
|
14468
|
-
var product_infovue_type_style_index_0_id_1e5d92ce_prod_lang_css_ = __webpack_require__(
|
|
14217
|
+
var product_infovue_type_style_index_0_id_1e5d92ce_prod_lang_css_ = __webpack_require__(234);
|
|
14469
14218
|
|
|
14470
14219
|
// EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
|
|
14471
14220
|
var componentNormalizer = __webpack_require__(8);
|