lakutata 0.1.19 → 0.1.21
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/CLI.js +83 -83
- package/Crypto.js +28 -28
- package/Hash.js +4 -4
- package/Helper.js +2 -2
- package/Lakutata.d.ts +3 -2
- package/Lakutata.js +6 -6
- package/{chunk-5IIMLGLE.js → chunk-GMO2BC4Y.js} +15 -15
- package/{chunk-VZLDHNU6.js → chunk-H3MWIPDV.js} +200 -200
- package/{chunk-ES3Q6J7A.js → chunk-SFELBJVQ.js} +3 -3
- package/{chunk-TC35FNWQ.js → chunk-XVKDOIJP.js} +6 -6
- package/{chunk-Z5ADVGBN.js → chunk-YTBUFDW2.js} +5 -5
- package/package.json +1 -1
package/Crypto.js
CHANGED
|
@@ -13,15 +13,15 @@
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
-
var
|
|
17
|
-
require('./chunk-
|
|
16
|
+
var _chunkGMO2BC4Yjs = require('./chunk-GMO2BC4Y.js');
|
|
17
|
+
require('./chunk-SFELBJVQ.js');
|
|
18
18
|
require('./chunk-IZCE6VLC.js');
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
var
|
|
24
|
+
var _chunkXVKDOIJPjs = require('./chunk-XVKDOIJP.js');
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
@@ -46,14 +46,14 @@ var require_browserify_cipher = _chunk7LXDFQCYjs.__commonJS.call(void 0, {
|
|
|
46
46
|
// src/lib/base/abstracts/AsymmetricEncryption.ts
|
|
47
47
|
var _promises = require('fs/promises');
|
|
48
48
|
async function getKeyContent(inp) {
|
|
49
|
-
let keyString =
|
|
50
|
-
if (
|
|
49
|
+
let keyString = _chunkXVKDOIJPjs.As.call(void 0, inp);
|
|
50
|
+
if (_chunkXVKDOIJPjs.IsPath.call(void 0, inp)) {
|
|
51
51
|
try {
|
|
52
52
|
const fileStat = await _promises.stat.call(void 0, inp);
|
|
53
53
|
if (fileStat.isFile())
|
|
54
54
|
keyString = await _promises.readFile.call(void 0, inp, { encoding: "utf-8" });
|
|
55
55
|
} catch (e) {
|
|
56
|
-
keyString =
|
|
56
|
+
keyString = _chunkXVKDOIJPjs.As.call(void 0, inp);
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
return keyString;
|
|
@@ -75,7 +75,7 @@ var AsymmetricEncryption = (_class = class {
|
|
|
75
75
|
this.privateKey = this.createPrivateKey(keyPair.privateKey);
|
|
76
76
|
this.privateKeyString = keyPair.privateKey;
|
|
77
77
|
} catch (e) {
|
|
78
|
-
throw new (0,
|
|
78
|
+
throw new (0, _chunkGMO2BC4Yjs.InvalidAsymmetricEncryptPrivateKeyException)(e);
|
|
79
79
|
}
|
|
80
80
|
}
|
|
81
81
|
if (keyPair.publicKey) {
|
|
@@ -83,7 +83,7 @@ var AsymmetricEncryption = (_class = class {
|
|
|
83
83
|
this.publicKey = this.createPublicKey(keyPair.publicKey);
|
|
84
84
|
this.publicKeyString = keyPair.publicKey;
|
|
85
85
|
} catch (e) {
|
|
86
|
-
throw new (0,
|
|
86
|
+
throw new (0, _chunkGMO2BC4Yjs.InvalidAsymmetricEncryptPublicKeyException)(e);
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
}
|
|
@@ -97,7 +97,7 @@ var AsymmetricEncryption = (_class = class {
|
|
|
97
97
|
try {
|
|
98
98
|
return this.encrypt(message);
|
|
99
99
|
} catch (e) {
|
|
100
|
-
throw new (0,
|
|
100
|
+
throw new (0, _chunkGMO2BC4Yjs.AsymmetricEncryptException)(e);
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
/**
|
|
@@ -109,7 +109,7 @@ var AsymmetricEncryption = (_class = class {
|
|
|
109
109
|
try {
|
|
110
110
|
return this.decrypt(encryptedMessage);
|
|
111
111
|
} catch (e) {
|
|
112
|
-
throw new (0,
|
|
112
|
+
throw new (0, _chunkGMO2BC4Yjs.AsymmetricDecryptException)(e);
|
|
113
113
|
}
|
|
114
114
|
}
|
|
115
115
|
/**
|
|
@@ -121,7 +121,7 @@ var AsymmetricEncryption = (_class = class {
|
|
|
121
121
|
try {
|
|
122
122
|
return this.sign(message);
|
|
123
123
|
} catch (e) {
|
|
124
|
-
throw new (0,
|
|
124
|
+
throw new (0, _chunkGMO2BC4Yjs.AsymmetricSignException)(e);
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
/**
|
|
@@ -134,7 +134,7 @@ var AsymmetricEncryption = (_class = class {
|
|
|
134
134
|
try {
|
|
135
135
|
return this.verify(message, sign2);
|
|
136
136
|
} catch (e) {
|
|
137
|
-
throw new (0,
|
|
137
|
+
throw new (0, _chunkGMO2BC4Yjs.AsymmetricVerifyException)(e);
|
|
138
138
|
}
|
|
139
139
|
}
|
|
140
140
|
/**
|
|
@@ -154,7 +154,7 @@ var AsymmetricEncryption = (_class = class {
|
|
|
154
154
|
*/
|
|
155
155
|
get public() {
|
|
156
156
|
if (!this.publicKey)
|
|
157
|
-
throw new (0,
|
|
157
|
+
throw new (0, _chunkGMO2BC4Yjs.NoAsymmetricEncryptPublicKeyException)("Public key not found");
|
|
158
158
|
return {
|
|
159
159
|
encrypt: (message) => this._encrypt(message),
|
|
160
160
|
verify: (message, sign2) => this._verify(message, sign2),
|
|
@@ -166,7 +166,7 @@ var AsymmetricEncryption = (_class = class {
|
|
|
166
166
|
*/
|
|
167
167
|
get private() {
|
|
168
168
|
if (!this.privateKey)
|
|
169
|
-
throw new (0,
|
|
169
|
+
throw new (0, _chunkGMO2BC4Yjs.NoAsymmetricEncryptPrivateKeyException)("Private key not found");
|
|
170
170
|
return {
|
|
171
171
|
decrypt: (encryptedMessage) => this._decrypt(encryptedMessage),
|
|
172
172
|
sign: (message) => this._sign(message),
|
|
@@ -188,10 +188,10 @@ var AsymmetricEncryption = (_class = class {
|
|
|
188
188
|
static async loadKeyPair(keyPair, options) {
|
|
189
189
|
const instance = new this(keyPair);
|
|
190
190
|
instance.options = Object.assign(instance.options, options ? options : {});
|
|
191
|
-
const nonceStr =
|
|
191
|
+
const nonceStr = _chunkXVKDOIJPjs.NonceStr.call(void 0, );
|
|
192
192
|
const signature = instance.sign(nonceStr);
|
|
193
193
|
if (!instance.verify(nonceStr, signature))
|
|
194
|
-
throw new (0,
|
|
194
|
+
throw new (0, _chunkGMO2BC4Yjs.InvalidAsymmetricEncryptKeyPairException)("Invalid key pair");
|
|
195
195
|
return instance;
|
|
196
196
|
}
|
|
197
197
|
static async loadPublicKey(inp, options) {
|
|
@@ -284,7 +284,7 @@ var SymmetricEncryption = (_class2 = class {constructor() { _class2.prototype.__
|
|
|
284
284
|
this.decipherCreator = decipherCreator;
|
|
285
285
|
const validateKeyLengthResult = this.validateKeyLength(this.key);
|
|
286
286
|
if (!validateKeyLengthResult.isValid)
|
|
287
|
-
throw new (0,
|
|
287
|
+
throw new (0, _chunkGMO2BC4Yjs.InvalidSymmetricCipherKeyLengthException)(
|
|
288
288
|
"The key length should be {expectBytes} bytes ({expectBits}-bits), but the received key length is {receivedBytes} bytes ({receivedBits}-bits)",
|
|
289
289
|
{
|
|
290
290
|
expectBytes: validateKeyLengthResult.expectBytes,
|
|
@@ -295,7 +295,7 @@ var SymmetricEncryption = (_class2 = class {constructor() { _class2.prototype.__
|
|
|
295
295
|
);
|
|
296
296
|
const validateIVLengthResult = this.validateIVLength(this.iv);
|
|
297
297
|
if (!validateIVLengthResult.isValid)
|
|
298
|
-
throw new (0,
|
|
298
|
+
throw new (0, _chunkGMO2BC4Yjs.InvalidSymmetricCipherIVLengthException)(
|
|
299
299
|
"The IV length should be {expectBytes} bytes ({expectBits}-bits), but the received IV length is {receivedBytes} bytes ({receivedBits}-bits)",
|
|
300
300
|
{
|
|
301
301
|
expectBytes: validateIVLengthResult.expectBytes,
|
|
@@ -323,7 +323,7 @@ var SymmetricEncryption = (_class2 = class {constructor() { _class2.prototype.__
|
|
|
323
323
|
* @protected
|
|
324
324
|
*/
|
|
325
325
|
algorithmNotFoundInitializer() {
|
|
326
|
-
throw new (0,
|
|
326
|
+
throw new (0, _chunkGMO2BC4Yjs.NotSupportCipherException)('The algorithm "{algorithm}" is not support', { algorithm: this.algorithm });
|
|
327
327
|
}
|
|
328
328
|
/**
|
|
329
329
|
* 验证key的长度
|
|
@@ -358,7 +358,7 @@ var SymmetricEncryption = (_class2 = class {constructor() { _class2.prototype.__
|
|
|
358
358
|
const cipher = this.Cipher;
|
|
359
359
|
return `${cipher.update(message, "utf-8", "hex")}${cipher.final("hex")}`;
|
|
360
360
|
} catch (e) {
|
|
361
|
-
throw new (0,
|
|
361
|
+
throw new (0, _chunkGMO2BC4Yjs.SymmetricEncryptException)(e);
|
|
362
362
|
}
|
|
363
363
|
}
|
|
364
364
|
/**
|
|
@@ -369,10 +369,10 @@ var SymmetricEncryption = (_class2 = class {constructor() { _class2.prototype.__
|
|
|
369
369
|
try {
|
|
370
370
|
return await new Promise((resolve, reject) => {
|
|
371
371
|
let cache = Buffer.from([]);
|
|
372
|
-
|
|
372
|
+
_chunkXVKDOIJPjs.ConvertToStream.call(void 0, message).pipe(this.Cipher).on("data", (chunk) => cache = Buffer.concat([cache, chunk])).once("error", reject).once("end", () => resolve(cache.toString("hex")));
|
|
373
373
|
});
|
|
374
374
|
} catch (e) {
|
|
375
|
-
throw new (0,
|
|
375
|
+
throw new (0, _chunkGMO2BC4Yjs.SymmetricEncryptException)(e);
|
|
376
376
|
}
|
|
377
377
|
}
|
|
378
378
|
/**
|
|
@@ -384,7 +384,7 @@ var SymmetricEncryption = (_class2 = class {constructor() { _class2.prototype.__
|
|
|
384
384
|
const decipher = this.Decipher;
|
|
385
385
|
return `${decipher.update(encryptedMessage, "hex", "utf-8")}${decipher.final("utf-8")}`;
|
|
386
386
|
} catch (e) {
|
|
387
|
-
throw new (0,
|
|
387
|
+
throw new (0, _chunkGMO2BC4Yjs.SymmetricDecryptException)(e);
|
|
388
388
|
}
|
|
389
389
|
}
|
|
390
390
|
/**
|
|
@@ -398,7 +398,7 @@ var SymmetricEncryption = (_class2 = class {constructor() { _class2.prototype.__
|
|
|
398
398
|
decipher.once("error", reject);
|
|
399
399
|
let chunkCache = "";
|
|
400
400
|
let decryptedMessage = "";
|
|
401
|
-
|
|
401
|
+
_chunkXVKDOIJPjs.ConvertToStream.call(void 0, encryptedMessage).on("data", (chunk) => {
|
|
402
402
|
chunkCache += chunk;
|
|
403
403
|
if (chunkCache.length >= this.blockSize) {
|
|
404
404
|
decryptedMessage += decipher.update(chunkCache, "hex", "utf-8");
|
|
@@ -407,7 +407,7 @@ var SymmetricEncryption = (_class2 = class {constructor() { _class2.prototype.__
|
|
|
407
407
|
}).once("error", reject).once("end", () => resolve(`${decryptedMessage}${decipher.update(chunkCache, "hex", "utf-8")}${decipher.final("utf-8")}`));
|
|
408
408
|
});
|
|
409
409
|
} catch (e) {
|
|
410
|
-
throw new (0,
|
|
410
|
+
throw new (0, _chunkGMO2BC4Yjs.SymmetricDecryptException)(e);
|
|
411
411
|
}
|
|
412
412
|
}
|
|
413
413
|
/**
|
|
@@ -703,7 +703,7 @@ var RSA = (_class14 = class extends AsymmetricEncryption {constructor(...args) {
|
|
|
703
703
|
options.privateKeyEncoding = options.privateKeyEncoding ? options.privateKeyEncoding : {};
|
|
704
704
|
options.privateKeyEncoding.format = options.privateKeyEncoding.format ? options.privateKeyEncoding.format : "pem";
|
|
705
705
|
options.privateKeyEncoding.type = options.privateKeyEncoding.type ? options.privateKeyEncoding.type : "pkcs1";
|
|
706
|
-
return _crypto.generateKeyPair.call(void 0, "rsa",
|
|
706
|
+
return _crypto.generateKeyPair.call(void 0, "rsa", _chunkXVKDOIJPjs.As.call(void 0, options), (err, publicKey, privateKey) => {
|
|
707
707
|
if (err)
|
|
708
708
|
return reject(err);
|
|
709
709
|
return resolve({
|
|
@@ -723,7 +723,7 @@ var RSA = (_class14 = class extends AsymmetricEncryption {constructor(...args) {
|
|
|
723
723
|
return super.generateKeyPair(options);
|
|
724
724
|
}
|
|
725
725
|
static async loadKeyPair(keyPair, options) {
|
|
726
|
-
return
|
|
726
|
+
return _chunkXVKDOIJPjs.As.call(void 0, super.loadKeyPair(keyPair, options));
|
|
727
727
|
}
|
|
728
728
|
static async loadPublicKey(inp, options) {
|
|
729
729
|
return super.loadPublicKey(inp, options);
|
|
@@ -3643,7 +3643,7 @@ var SM2 = (_class19 = class extends AsymmetricEncryption {constructor(...args2)
|
|
|
3643
3643
|
}
|
|
3644
3644
|
static async loadKeyPair(keyPair, options) {
|
|
3645
3645
|
await initRNGPool2(this);
|
|
3646
|
-
return
|
|
3646
|
+
return _chunkXVKDOIJPjs.As.call(void 0, super.loadKeyPair(keyPair, options));
|
|
3647
3647
|
}
|
|
3648
3648
|
static async loadPublicKey(inp, options) {
|
|
3649
3649
|
await initRNGPool2(this);
|
package/Hash.js
CHANGED
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
|
|
52
52
|
|
|
53
53
|
|
|
54
|
-
var
|
|
55
|
-
require('./chunk-
|
|
54
|
+
var _chunkYTBUFDW2js = require('./chunk-YTBUFDW2.js');
|
|
55
|
+
require('./chunk-SFELBJVQ.js');
|
|
56
56
|
require('./chunk-IZCE6VLC.js');
|
|
57
|
-
require('./chunk-
|
|
57
|
+
require('./chunk-XVKDOIJP.js');
|
|
58
58
|
require('./chunk-7LXDFQCY.js');
|
|
59
59
|
|
|
60
60
|
|
|
@@ -109,4 +109,4 @@ require('./chunk-7LXDFQCY.js');
|
|
|
109
109
|
|
|
110
110
|
|
|
111
111
|
|
|
112
|
-
exports.HmacMD5 =
|
|
112
|
+
exports.HmacMD5 = _chunkYTBUFDW2js.HmacMD5; exports.HmacRIPEMD160 = _chunkYTBUFDW2js.HmacRIPEMD160; exports.HmacSHA1 = _chunkYTBUFDW2js.HmacSHA1; exports.HmacSHA224 = _chunkYTBUFDW2js.HmacSHA224; exports.HmacSHA256 = _chunkYTBUFDW2js.HmacSHA256; exports.HmacSHA3 = _chunkYTBUFDW2js.HmacSHA3; exports.HmacSHA384 = _chunkYTBUFDW2js.HmacSHA384; exports.HmacSHA3_224 = _chunkYTBUFDW2js.HmacSHA3_224; exports.HmacSHA3_256 = _chunkYTBUFDW2js.HmacSHA3_256; exports.HmacSHA3_384 = _chunkYTBUFDW2js.HmacSHA3_384; exports.HmacSHA3_512 = _chunkYTBUFDW2js.HmacSHA3_512; exports.HmacSHA512 = _chunkYTBUFDW2js.HmacSHA512; exports.HmacSM3 = _chunkYTBUFDW2js.HmacSM3; exports.MD5 = _chunkYTBUFDW2js.MD5; exports.RIPEMD160 = _chunkYTBUFDW2js.RIPEMD160; exports.SHA1 = _chunkYTBUFDW2js.SHA1; exports.SHA224 = _chunkYTBUFDW2js.SHA224; exports.SHA256 = _chunkYTBUFDW2js.SHA256; exports.SHA3 = _chunkYTBUFDW2js.SHA3; exports.SHA384 = _chunkYTBUFDW2js.SHA384; exports.SHA3_224 = _chunkYTBUFDW2js.SHA3_224; exports.SHA3_256 = _chunkYTBUFDW2js.SHA3_256; exports.SHA3_384 = _chunkYTBUFDW2js.SHA3_384; exports.SHA3_512 = _chunkYTBUFDW2js.SHA3_512; exports.SHA512 = _chunkYTBUFDW2js.SHA512; exports.SM3 = _chunkYTBUFDW2js.SM3; exports.StreamHmacMD5 = _chunkYTBUFDW2js.StreamHmacMD5; exports.StreamHmacRIPEMD160 = _chunkYTBUFDW2js.StreamHmacRIPEMD160; exports.StreamHmacSHA1 = _chunkYTBUFDW2js.StreamHmacSHA1; exports.StreamHmacSHA224 = _chunkYTBUFDW2js.StreamHmacSHA224; exports.StreamHmacSHA256 = _chunkYTBUFDW2js.StreamHmacSHA256; exports.StreamHmacSHA3 = _chunkYTBUFDW2js.StreamHmacSHA3; exports.StreamHmacSHA384 = _chunkYTBUFDW2js.StreamHmacSHA384; exports.StreamHmacSHA3_224 = _chunkYTBUFDW2js.StreamHmacSHA3_224; exports.StreamHmacSHA3_256 = _chunkYTBUFDW2js.StreamHmacSHA3_256; exports.StreamHmacSHA3_384 = _chunkYTBUFDW2js.StreamHmacSHA3_384; exports.StreamHmacSHA3_512 = _chunkYTBUFDW2js.StreamHmacSHA3_512; exports.StreamHmacSHA512 = _chunkYTBUFDW2js.StreamHmacSHA512; exports.StreamHmacSM3 = _chunkYTBUFDW2js.StreamHmacSM3; exports.StreamMD5 = _chunkYTBUFDW2js.StreamMD5; exports.StreamRIPEMD160 = _chunkYTBUFDW2js.StreamRIPEMD160; exports.StreamSHA1 = _chunkYTBUFDW2js.StreamSHA1; exports.StreamSHA224 = _chunkYTBUFDW2js.StreamSHA224; exports.StreamSHA256 = _chunkYTBUFDW2js.StreamSHA256; exports.StreamSHA3 = _chunkYTBUFDW2js.StreamSHA3; exports.StreamSHA384 = _chunkYTBUFDW2js.StreamSHA384; exports.StreamSHA3_224 = _chunkYTBUFDW2js.StreamSHA3_224; exports.StreamSHA3_256 = _chunkYTBUFDW2js.StreamSHA3_256; exports.StreamSHA3_384 = _chunkYTBUFDW2js.StreamSHA3_384; exports.StreamSHA3_512 = _chunkYTBUFDW2js.StreamSHA3_512; exports.StreamSHA512 = _chunkYTBUFDW2js.StreamSHA512; exports.StreamSM3 = _chunkYTBUFDW2js.StreamSM3;
|
package/Helper.js
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
var
|
|
31
|
+
var _chunkXVKDOIJPjs = require('./chunk-XVKDOIJP.js');
|
|
32
32
|
require('./chunk-7LXDFQCY.js');
|
|
33
33
|
|
|
34
34
|
|
|
@@ -60,4 +60,4 @@ require('./chunk-7LXDFQCY.js');
|
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
|
|
63
|
-
exports.ArrayToSet =
|
|
63
|
+
exports.ArrayToSet = _chunkXVKDOIJPjs.ArrayToSet; exports.As = _chunkXVKDOIJPjs.As; exports.ConfigureObjectProperties = _chunkXVKDOIJPjs.ConfigureObjectProperties; exports.ConvertToIterable = _chunkXVKDOIJPjs.ConvertToIterable; exports.ConvertToStream = _chunkXVKDOIJPjs.ConvertToStream; exports.Delay = _chunkXVKDOIJPjs.Delay; exports.DevNull = _chunkXVKDOIJPjs.DevNull; exports.Exists = _chunkXVKDOIJPjs.Exists; exports.GetPort = _chunkXVKDOIJPjs.GetPort; exports.GraceExit = _chunkXVKDOIJPjs.GraceExit; exports.IsEqual = _chunkXVKDOIJPjs.IsEqual; exports.IsGlobString = _chunkXVKDOIJPjs.IsGlobString; exports.IsObjectInitialized = _chunkXVKDOIJPjs.IsObjectInitialized; exports.IsPath = _chunkXVKDOIJPjs.IsPath; exports.IsPromise = _chunkXVKDOIJPjs.IsPromise; exports.IsPromiseLike = _chunkXVKDOIJPjs.IsPromiseLike; exports.MergeArray = _chunkXVKDOIJPjs.MergeArray; exports.MergeMap = _chunkXVKDOIJPjs.MergeMap; exports.MergeSet = _chunkXVKDOIJPjs.MergeSet; exports.NonceStr = _chunkXVKDOIJPjs.NonceStr; exports.ObjectToMap = _chunkXVKDOIJPjs.ObjectToMap; exports.ParentConstructor = _chunkXVKDOIJPjs.ParentConstructor; exports.RandomString = _chunkXVKDOIJPjs.RandomString; exports.SetToArray = _chunkXVKDOIJPjs.SetToArray; exports.SortArray = _chunkXVKDOIJPjs.SortArray; exports.SortObject = _chunkXVKDOIJPjs.SortObject; exports.TextTemplate = _chunkXVKDOIJPjs.TextTemplate; exports.ThrowIntoBlackHole = _chunkXVKDOIJPjs.ThrowIntoBlackHole; exports.UniqueArray = _chunkXVKDOIJPjs.UniqueArray;
|
package/Lakutata.d.ts
CHANGED
|
@@ -6000,13 +6000,14 @@ declare function Configurable<T extends BaseObject>(options?: ConfigurableOption
|
|
|
6000
6000
|
type TActionFunction = (inp?: any) => Promise<any>;
|
|
6001
6001
|
type TExcludes<T, U> = T extends U ? never : T;
|
|
6002
6002
|
type TActionName<T, U> = TExcludes<keyof T, U>;
|
|
6003
|
+
type ControllerActionDecorator<T extends Controller> = (target: T, propertyKey: TActionName<T, keyof Controller | 'init' | '__init' | 'destroy' | '__destroy'>, descriptor: TypedPropertyDescriptor<TActionFunction>) => TypedPropertyDescriptor<TActionFunction>;
|
|
6003
6004
|
/**
|
|
6004
6005
|
* 控制器动作方法声明
|
|
6005
6006
|
* @param pattern
|
|
6006
6007
|
* @param authOptions
|
|
6007
6008
|
* @constructor
|
|
6008
6009
|
*/
|
|
6009
|
-
declare function Action<T extends Controller>(pattern: ActionPattern, authOptions?: ActionAuthOptions):
|
|
6010
|
+
declare function Action<T extends Controller>(pattern: ActionPattern, authOptions?: ActionAuthOptions): ControllerActionDecorator<T>;
|
|
6010
6011
|
|
|
6011
6012
|
type Distance = 'mm' | 'cm' | 'm' | 'km' | 'in' | 'ft-us' | 'ft' | 'yd' | 'mi';
|
|
6012
6013
|
type Area = 'mm2' | 'cm2' | 'm2' | 'ha' | 'km2' | 'in2' | 'ft2' | 'ac' | 'mi2';
|
|
@@ -7024,4 +7025,4 @@ declare global {
|
|
|
7024
7025
|
}
|
|
7025
7026
|
}
|
|
7026
7027
|
|
|
7027
|
-
export { Accept, AccessControl, AccessControlConfigureRequiredException, AccessDenyException, Action, ActionAuthOptions, ActionPattern, AddRuleOptions, AliasExistsException, AliasNotFoundException, AlternativesSchema, Angle, AnySchema, ApparentPower, Application, ApplicationOptions, Area, ArraySchema, ArraySortOptions, ArrayUniqueOptions, AsymmetricDecryptException, AsymmetricEncryptException, AsymmetricSignException, AsymmetricVerifyException, AsyncFunction, AsyncValidationOptions, AuthStoreOptions, Base64Options, BaseObject, BaseValidationOptions, BaseValidator, BasicType, BinarySchema, BooleanSchema, Cache, CacheConfiguration, CacheProvisionOptions, ChildProcessUnavailableException, CoerceFunction, CoerceObject, CoerceResult, ComparatorFunction, CompileOptions, Component, Configurable, ConfigurableOptions, Container, Context, Controller, ControllerActionMapItem, ControllerAuthConfigItem, CreateErrorOptions, Cron, Current, CustomHelpers, CustomValidator, DTO, DataUriOptions, Database, DateSchema, DependencyInjectionException, DependencyOptions, Description, Digital, DispatchToControllerConfigurableParams, Distance, DomainOptions, DuplicateControllerActionPatternException, DynamicRegisterControllerNotAllowException, EmailOptions, Energy, ErrorFormattingOptions, ErrorReport, ErrorValidationOptions, Exception, Expect, Extension, ExtensionBoundSchema, ExtensionFlag, ExtensionRule, ExtensionTerm, ExtensionTermManifest, ExternalHelpers, ExternalValidationFunction, Formatter, Frequency, FunctionSchema, GetRuleOptions, GuidOptions, GuidVersions, HexOptions, HierarchySeparatorOptions, HttpRequest, HttpRequestAbortException, HttpRequestException, HttpRequestMethod, HttpRequestOptions, HttpResponseType, IAuthFileStoreOptions, IConstructor, ILogger, IPatRun, IPermission, ISortArrayOptions, ISortObjectOptions, IUser, IUserPermission, IllegalMethodCallException, IndexSignature, Inject, InjectApp, InjectModule, InjectionProperties, Interval, IntervalMode, InvalidAliasNameException, InvalidAsymmetricEncryptKeyPairException, InvalidAsymmetricEncryptPrivateKeyException, InvalidAsymmetricEncryptPublicKeyException, InvalidConfigurableValueException, InvalidDTOValueException, InvalidGlobStringException, InvalidMethodAcceptException, InvalidMethodReturnException, InvalidSymmetricCipherIVLengthException, InvalidSymmetricCipherKeyLengthException, InvalidValueException, IpOptions, IsNonPrimitiveSubsetUnion, IsPrimitiveSubset, IsSchemaOptions, IsUnion, LanguageMessageTemplate, LanguageMessages, Lifetime, LinkSchema, LoadComponentOptions, LoadEntryClassOptions, LoadEntryCommonOptions, LoadModuleOptions, Logger, Mass, MethodNotFoundException, MethodNotImplementedException, Model, ModifyOptions, Module, ModuleNotFoundException, ModuleOptions, MutateRegisterOptions, NoAsymmetricEncryptPrivateKeyException, NoAsymmetricEncryptPublicKeyException, NoAuthUserException, NoMatchedControllerActionPatternException, NotSupportCipherException, NotSupportHashException, NullableType, NumberSchema, ObjectPatternOptions, ObjectPropertiesSchema, ObjectSchema, Pace, PartialSchemaMap, PartsPer, Power, PresenceMode, Pressure, Process, ReactiveEnergy, ReactivePower, Reference, ReferenceOptions, RenameOptions, Return, RuleArgs, RuleMethod, RuleOptions, Schema, SchemaFunction, SchemaInternals, SchemaLike, SchemaLikeWithoutArray, SchemaMap, Scoped, SetFlagOptions, Singleton, Speed, State, StrictSchemaMap, StringRegexOptions, StringSchema, SwitchCases, SwitchDefault, SymbolSchema, SymmetricDecryptException, SymmetricEncryptException, Temperature, ThreadTask, Time, TimeInput, TimeObject, TopLevelDomainOptions, Transient, Types, UnitOfTime, UriOptions, ValidationError, ValidationErrorFunction, ValidationErrorItem, ValidationOptions, ValidationResult, ValidationWarning, Validator, Voltage, Volume, VolumeFlowRate, WhenOptions, WhenSchemaOptions };
|
|
7028
|
+
export { Accept, AccessControl, AccessControlConfigureRequiredException, AccessDenyException, Action, ActionAuthOptions, ActionPattern, AddRuleOptions, AliasExistsException, AliasNotFoundException, AlternativesSchema, Angle, AnySchema, ApparentPower, Application, ApplicationOptions, Area, ArraySchema, ArraySortOptions, ArrayUniqueOptions, AsymmetricDecryptException, AsymmetricEncryptException, AsymmetricSignException, AsymmetricVerifyException, AsyncFunction, AsyncValidationOptions, AuthStoreOptions, Base64Options, BaseObject, BaseValidationOptions, BaseValidator, BasicType, BinarySchema, BooleanSchema, Cache, CacheConfiguration, CacheProvisionOptions, ChildProcessUnavailableException, CoerceFunction, CoerceObject, CoerceResult, ComparatorFunction, CompileOptions, Component, Configurable, ConfigurableOptions, Container, Context, Controller, ControllerActionDecorator, ControllerActionMapItem, ControllerAuthConfigItem, CreateErrorOptions, Cron, Current, CustomHelpers, CustomValidator, DTO, DataUriOptions, Database, DateSchema, DependencyInjectionException, DependencyOptions, Description, Digital, DispatchToControllerConfigurableParams, Distance, DomainOptions, DuplicateControllerActionPatternException, DynamicRegisterControllerNotAllowException, EmailOptions, Energy, ErrorFormattingOptions, ErrorReport, ErrorValidationOptions, Exception, Expect, Extension, ExtensionBoundSchema, ExtensionFlag, ExtensionRule, ExtensionTerm, ExtensionTermManifest, ExternalHelpers, ExternalValidationFunction, Formatter, Frequency, FunctionSchema, GetRuleOptions, GuidOptions, GuidVersions, HexOptions, HierarchySeparatorOptions, HttpRequest, HttpRequestAbortException, HttpRequestException, HttpRequestMethod, HttpRequestOptions, HttpResponseType, IAuthFileStoreOptions, IConstructor, ILogger, IPatRun, IPermission, ISortArrayOptions, ISortObjectOptions, IUser, IUserPermission, IllegalMethodCallException, IndexSignature, Inject, InjectApp, InjectModule, InjectionProperties, Interval, IntervalMode, InvalidAliasNameException, InvalidAsymmetricEncryptKeyPairException, InvalidAsymmetricEncryptPrivateKeyException, InvalidAsymmetricEncryptPublicKeyException, InvalidConfigurableValueException, InvalidDTOValueException, InvalidGlobStringException, InvalidMethodAcceptException, InvalidMethodReturnException, InvalidSymmetricCipherIVLengthException, InvalidSymmetricCipherKeyLengthException, InvalidValueException, IpOptions, IsNonPrimitiveSubsetUnion, IsPrimitiveSubset, IsSchemaOptions, IsUnion, LanguageMessageTemplate, LanguageMessages, Lifetime, LinkSchema, LoadComponentOptions, LoadEntryClassOptions, LoadEntryCommonOptions, LoadModuleOptions, Logger, Mass, MethodNotFoundException, MethodNotImplementedException, Model, ModifyOptions, Module, ModuleNotFoundException, ModuleOptions, MutateRegisterOptions, NoAsymmetricEncryptPrivateKeyException, NoAsymmetricEncryptPublicKeyException, NoAuthUserException, NoMatchedControllerActionPatternException, NotSupportCipherException, NotSupportHashException, NullableType, NumberSchema, ObjectPatternOptions, ObjectPropertiesSchema, ObjectSchema, Pace, PartialSchemaMap, PartsPer, Power, PresenceMode, Pressure, Process, ReactiveEnergy, ReactivePower, Reference, ReferenceOptions, RenameOptions, Return, RuleArgs, RuleMethod, RuleOptions, Schema, SchemaFunction, SchemaInternals, SchemaLike, SchemaLikeWithoutArray, SchemaMap, Scoped, SetFlagOptions, Singleton, Speed, State, StrictSchemaMap, StringRegexOptions, StringSchema, SwitchCases, SwitchDefault, SymbolSchema, SymmetricDecryptException, SymmetricEncryptException, Temperature, ThreadTask, Time, TimeInput, TimeObject, TopLevelDomainOptions, Transient, Types, UnitOfTime, UriOptions, ValidationError, ValidationErrorFunction, ValidationErrorItem, ValidationOptions, ValidationResult, ValidationWarning, Validator, Voltage, Volume, VolumeFlowRate, WhenOptions, WhenSchemaOptions };
|
package/Lakutata.js
CHANGED
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
|
|
65
|
-
var
|
|
65
|
+
var _chunkH3MWIPDVjs = require('./chunk-H3MWIPDV.js');
|
|
66
66
|
require('./chunk-HWHHSPCG.js');
|
|
67
67
|
|
|
68
68
|
|
|
@@ -79,15 +79,15 @@ require('./chunk-HWHHSPCG.js');
|
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
var
|
|
82
|
+
var _chunkGMO2BC4Yjs = require('./chunk-GMO2BC4Y.js');
|
|
83
83
|
|
|
84
84
|
|
|
85
|
-
var
|
|
85
|
+
var _chunkYTBUFDW2js = require('./chunk-YTBUFDW2.js');
|
|
86
86
|
|
|
87
87
|
|
|
88
|
-
var
|
|
88
|
+
var _chunkSFELBJVQjs = require('./chunk-SFELBJVQ.js');
|
|
89
89
|
require('./chunk-IZCE6VLC.js');
|
|
90
|
-
require('./chunk-
|
|
90
|
+
require('./chunk-XVKDOIJP.js');
|
|
91
91
|
require('./chunk-7LXDFQCY.js');
|
|
92
92
|
|
|
93
93
|
|
|
@@ -169,4 +169,4 @@ require('./chunk-7LXDFQCY.js');
|
|
|
169
169
|
|
|
170
170
|
|
|
171
171
|
|
|
172
|
-
exports.Accept =
|
|
172
|
+
exports.Accept = _chunkH3MWIPDVjs.Accept; exports.AccessControl = _chunkH3MWIPDVjs.AccessControl; exports.AccessControlConfigureRequiredException = _chunkH3MWIPDVjs.AccessControlConfigureRequiredException; exports.AccessDenyException = _chunkH3MWIPDVjs.AccessDenyException; exports.Action = _chunkH3MWIPDVjs.Action; exports.AliasExistsException = _chunkH3MWIPDVjs.AliasExistsException; exports.AliasNotFoundException = _chunkH3MWIPDVjs.AliasNotFoundException; exports.Application = _chunkH3MWIPDVjs.Application; exports.ApplicationOptions = _chunkH3MWIPDVjs.ApplicationOptions; exports.AsymmetricDecryptException = _chunkGMO2BC4Yjs.AsymmetricDecryptException; exports.AsymmetricEncryptException = _chunkGMO2BC4Yjs.AsymmetricEncryptException; exports.AsymmetricSignException = _chunkGMO2BC4Yjs.AsymmetricSignException; exports.AsymmetricVerifyException = _chunkGMO2BC4Yjs.AsymmetricVerifyException; exports.BaseObject = _chunkH3MWIPDVjs.BaseObject; exports.BaseValidator = _chunkH3MWIPDVjs.BaseValidator; exports.ChildProcessUnavailableException = _chunkH3MWIPDVjs.ChildProcessUnavailableException; exports.Component = _chunkH3MWIPDVjs.Component; exports.Configurable = _chunkH3MWIPDVjs.Configurable; exports.Container = _chunkH3MWIPDVjs.Container; exports.Controller = _chunkH3MWIPDVjs.Controller; exports.Cron = _chunkH3MWIPDVjs.Cron; exports.DTO = _chunkH3MWIPDVjs.DTO; exports.Database = _chunkH3MWIPDVjs.Database; exports.DependencyInjectionException = _chunkH3MWIPDVjs.DependencyInjectionException; exports.DuplicateControllerActionPatternException = _chunkH3MWIPDVjs.DuplicateControllerActionPatternException; exports.DynamicRegisterControllerNotAllowException = _chunkH3MWIPDVjs.DynamicRegisterControllerNotAllowException; exports.Exception = _chunkSFELBJVQjs.Exception; exports.Expect = _chunkH3MWIPDVjs.Expect; exports.Formatter = _chunkH3MWIPDVjs.Formatter; exports.HttpRequest = _chunkH3MWIPDVjs.HttpRequest; exports.HttpRequestAbortException = _chunkH3MWIPDVjs.HttpRequestAbortException; exports.HttpRequestException = _chunkH3MWIPDVjs.HttpRequestException; exports.IllegalMethodCallException = _chunkH3MWIPDVjs.IllegalMethodCallException; exports.IndexSignature = _chunkH3MWIPDVjs.IndexSignature; exports.Inject = _chunkH3MWIPDVjs.Inject; exports.InjectApp = _chunkH3MWIPDVjs.InjectApp; exports.InjectModule = _chunkH3MWIPDVjs.InjectModule; exports.Interval = _chunkH3MWIPDVjs.Interval; exports.IntervalMode = _chunkH3MWIPDVjs.IntervalMode; exports.InvalidAliasNameException = _chunkH3MWIPDVjs.InvalidAliasNameException; exports.InvalidAsymmetricEncryptKeyPairException = _chunkGMO2BC4Yjs.InvalidAsymmetricEncryptKeyPairException; exports.InvalidAsymmetricEncryptPrivateKeyException = _chunkGMO2BC4Yjs.InvalidAsymmetricEncryptPrivateKeyException; exports.InvalidAsymmetricEncryptPublicKeyException = _chunkGMO2BC4Yjs.InvalidAsymmetricEncryptPublicKeyException; exports.InvalidConfigurableValueException = _chunkH3MWIPDVjs.InvalidConfigurableValueException; exports.InvalidDTOValueException = _chunkH3MWIPDVjs.InvalidDTOValueException; exports.InvalidGlobStringException = _chunkH3MWIPDVjs.InvalidGlobStringException; exports.InvalidMethodAcceptException = _chunkH3MWIPDVjs.InvalidMethodAcceptException; exports.InvalidMethodReturnException = _chunkH3MWIPDVjs.InvalidMethodReturnException; exports.InvalidSymmetricCipherIVLengthException = _chunkGMO2BC4Yjs.InvalidSymmetricCipherIVLengthException; exports.InvalidSymmetricCipherKeyLengthException = _chunkGMO2BC4Yjs.InvalidSymmetricCipherKeyLengthException; exports.InvalidValueException = _chunkH3MWIPDVjs.InvalidValueException; exports.Lifetime = _chunkH3MWIPDVjs.Lifetime; exports.LoadComponentOptions = _chunkH3MWIPDVjs.LoadComponentOptions; exports.LoadEntryClassOptions = _chunkH3MWIPDVjs.LoadEntryClassOptions; exports.LoadEntryCommonOptions = _chunkH3MWIPDVjs.LoadEntryCommonOptions; exports.LoadModuleOptions = _chunkH3MWIPDVjs.LoadModuleOptions; exports.Logger = _chunkH3MWIPDVjs.Logger; exports.MethodNotFoundException = _chunkH3MWIPDVjs.MethodNotFoundException; exports.MethodNotImplementedException = _chunkH3MWIPDVjs.MethodNotImplementedException; exports.Model = _chunkH3MWIPDVjs.Model; exports.Module = _chunkH3MWIPDVjs.Module; exports.ModuleNotFoundException = _chunkH3MWIPDVjs.ModuleNotFoundException; exports.ModuleOptions = _chunkH3MWIPDVjs.ModuleOptions; exports.NoAsymmetricEncryptPrivateKeyException = _chunkGMO2BC4Yjs.NoAsymmetricEncryptPrivateKeyException; exports.NoAsymmetricEncryptPublicKeyException = _chunkGMO2BC4Yjs.NoAsymmetricEncryptPublicKeyException; exports.NoAuthUserException = _chunkH3MWIPDVjs.NoAuthUserException; exports.NoMatchedControllerActionPatternException = _chunkH3MWIPDVjs.NoMatchedControllerActionPatternException; exports.NotSupportCipherException = _chunkGMO2BC4Yjs.NotSupportCipherException; exports.NotSupportHashException = _chunkYTBUFDW2js.NotSupportHashException; exports.Process = _chunkH3MWIPDVjs.Process; exports.Return = _chunkH3MWIPDVjs.Return; exports.Scoped = _chunkH3MWIPDVjs.Scoped; exports.Singleton = _chunkH3MWIPDVjs.Singleton; exports.SymmetricDecryptException = _chunkGMO2BC4Yjs.SymmetricDecryptException; exports.SymmetricEncryptException = _chunkGMO2BC4Yjs.SymmetricEncryptException; exports.ThreadTask = _chunkH3MWIPDVjs.ThreadTask; exports.Time = _chunkH3MWIPDVjs.Time; exports.Transient = _chunkH3MWIPDVjs.Transient; exports.Validator = _chunkH3MWIPDVjs.Validator;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true}); var _class; var _class2; var _class3; var _class4; var _class5; var _class6; var _class7; var _class8; var _class9; var _class10; var _class11; var _class12; var _class13; var _class14;
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkSFELBJVQjs = require('./chunk-SFELBJVQ.js');
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
var _chunk7LXDFQCYjs = require('./chunk-7LXDFQCY.js');
|
|
7
7
|
|
|
8
8
|
// src/exceptions/crypto/asymmetric/AsymmetricDecryptException.ts
|
|
9
|
-
var AsymmetricDecryptException = (_class = class extends
|
|
9
|
+
var AsymmetricDecryptException = (_class = class extends _chunkSFELBJVQjs.Exception {constructor(...args) { super(...args); _class.prototype.__init.call(this); }
|
|
10
10
|
static {
|
|
11
11
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "AsymmetricDecryptException");
|
|
12
12
|
}
|
|
@@ -14,7 +14,7 @@ var AsymmetricDecryptException = (_class = class extends _chunkES3Q6J7Ajs.Except
|
|
|
14
14
|
}, _class);
|
|
15
15
|
|
|
16
16
|
// src/exceptions/crypto/asymmetric/AsymmetricEncryptException.ts
|
|
17
|
-
var AsymmetricEncryptException = (_class2 = class extends
|
|
17
|
+
var AsymmetricEncryptException = (_class2 = class extends _chunkSFELBJVQjs.Exception {constructor(...args2) { super(...args2); _class2.prototype.__init2.call(this); }
|
|
18
18
|
static {
|
|
19
19
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "AsymmetricEncryptException");
|
|
20
20
|
}
|
|
@@ -22,7 +22,7 @@ var AsymmetricEncryptException = (_class2 = class extends _chunkES3Q6J7Ajs.Excep
|
|
|
22
22
|
}, _class2);
|
|
23
23
|
|
|
24
24
|
// src/exceptions/crypto/asymmetric/AsymmetricSignException.ts
|
|
25
|
-
var AsymmetricSignException = (_class3 = class extends
|
|
25
|
+
var AsymmetricSignException = (_class3 = class extends _chunkSFELBJVQjs.Exception {constructor(...args3) { super(...args3); _class3.prototype.__init3.call(this); }
|
|
26
26
|
static {
|
|
27
27
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "AsymmetricSignException");
|
|
28
28
|
}
|
|
@@ -30,7 +30,7 @@ var AsymmetricSignException = (_class3 = class extends _chunkES3Q6J7Ajs.Exceptio
|
|
|
30
30
|
}, _class3);
|
|
31
31
|
|
|
32
32
|
// src/exceptions/crypto/asymmetric/AsymmetricVerifyException.ts
|
|
33
|
-
var AsymmetricVerifyException = (_class4 = class extends
|
|
33
|
+
var AsymmetricVerifyException = (_class4 = class extends _chunkSFELBJVQjs.Exception {constructor(...args4) { super(...args4); _class4.prototype.__init4.call(this); }
|
|
34
34
|
static {
|
|
35
35
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "AsymmetricVerifyException");
|
|
36
36
|
}
|
|
@@ -38,7 +38,7 @@ var AsymmetricVerifyException = (_class4 = class extends _chunkES3Q6J7Ajs.Except
|
|
|
38
38
|
}, _class4);
|
|
39
39
|
|
|
40
40
|
// src/exceptions/crypto/asymmetric/InvalidAsymmetricEncryptKeyPairException.ts
|
|
41
|
-
var InvalidAsymmetricEncryptKeyPairException = (_class5 = class extends
|
|
41
|
+
var InvalidAsymmetricEncryptKeyPairException = (_class5 = class extends _chunkSFELBJVQjs.Exception {constructor(...args5) { super(...args5); _class5.prototype.__init5.call(this); }
|
|
42
42
|
static {
|
|
43
43
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "InvalidAsymmetricEncryptKeyPairException");
|
|
44
44
|
}
|
|
@@ -46,7 +46,7 @@ var InvalidAsymmetricEncryptKeyPairException = (_class5 = class extends _chunkES
|
|
|
46
46
|
}, _class5);
|
|
47
47
|
|
|
48
48
|
// src/exceptions/crypto/asymmetric/InvalidAsymmetricEncryptPrivateKeyException.ts
|
|
49
|
-
var InvalidAsymmetricEncryptPrivateKeyException = (_class6 = class extends
|
|
49
|
+
var InvalidAsymmetricEncryptPrivateKeyException = (_class6 = class extends _chunkSFELBJVQjs.Exception {constructor(...args6) { super(...args6); _class6.prototype.__init6.call(this); }
|
|
50
50
|
static {
|
|
51
51
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "InvalidAsymmetricEncryptPrivateKeyException");
|
|
52
52
|
}
|
|
@@ -54,7 +54,7 @@ var InvalidAsymmetricEncryptPrivateKeyException = (_class6 = class extends _chun
|
|
|
54
54
|
}, _class6);
|
|
55
55
|
|
|
56
56
|
// src/exceptions/crypto/asymmetric/InvalidAsymmetricEncryptPublicKeyException.ts
|
|
57
|
-
var InvalidAsymmetricEncryptPublicKeyException = (_class7 = class extends
|
|
57
|
+
var InvalidAsymmetricEncryptPublicKeyException = (_class7 = class extends _chunkSFELBJVQjs.Exception {constructor(...args7) { super(...args7); _class7.prototype.__init7.call(this); }
|
|
58
58
|
static {
|
|
59
59
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "InvalidAsymmetricEncryptPublicKeyException");
|
|
60
60
|
}
|
|
@@ -62,7 +62,7 @@ var InvalidAsymmetricEncryptPublicKeyException = (_class7 = class extends _chunk
|
|
|
62
62
|
}, _class7);
|
|
63
63
|
|
|
64
64
|
// src/exceptions/crypto/asymmetric/NoAsymmetricEncryptPrivateKeyException.ts
|
|
65
|
-
var NoAsymmetricEncryptPrivateKeyException = (_class8 = class extends
|
|
65
|
+
var NoAsymmetricEncryptPrivateKeyException = (_class8 = class extends _chunkSFELBJVQjs.Exception {constructor(...args8) { super(...args8); _class8.prototype.__init8.call(this); }
|
|
66
66
|
static {
|
|
67
67
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "NoAsymmetricEncryptPrivateKeyException");
|
|
68
68
|
}
|
|
@@ -70,7 +70,7 @@ var NoAsymmetricEncryptPrivateKeyException = (_class8 = class extends _chunkES3Q
|
|
|
70
70
|
}, _class8);
|
|
71
71
|
|
|
72
72
|
// src/exceptions/crypto/asymmetric/NoAsymmetricEncryptPublicKeyException.ts
|
|
73
|
-
var NoAsymmetricEncryptPublicKeyException = (_class9 = class extends
|
|
73
|
+
var NoAsymmetricEncryptPublicKeyException = (_class9 = class extends _chunkSFELBJVQjs.Exception {constructor(...args9) { super(...args9); _class9.prototype.__init9.call(this); }
|
|
74
74
|
static {
|
|
75
75
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "NoAsymmetricEncryptPublicKeyException");
|
|
76
76
|
}
|
|
@@ -78,7 +78,7 @@ var NoAsymmetricEncryptPublicKeyException = (_class9 = class extends _chunkES3Q6
|
|
|
78
78
|
}, _class9);
|
|
79
79
|
|
|
80
80
|
// src/exceptions/crypto/symmetric/InvalidSymmetricCipherIVLengthException.ts
|
|
81
|
-
var InvalidSymmetricCipherIVLengthException = (_class10 = class extends
|
|
81
|
+
var InvalidSymmetricCipherIVLengthException = (_class10 = class extends _chunkSFELBJVQjs.Exception {constructor(...args10) { super(...args10); _class10.prototype.__init10.call(this); }
|
|
82
82
|
static {
|
|
83
83
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "InvalidSymmetricCipherIVLengthException");
|
|
84
84
|
}
|
|
@@ -86,7 +86,7 @@ var InvalidSymmetricCipherIVLengthException = (_class10 = class extends _chunkES
|
|
|
86
86
|
}, _class10);
|
|
87
87
|
|
|
88
88
|
// src/exceptions/crypto/symmetric/InvalidSymmetricCipherKeyLengthException.ts
|
|
89
|
-
var InvalidSymmetricCipherKeyLengthException = (_class11 = class extends
|
|
89
|
+
var InvalidSymmetricCipherKeyLengthException = (_class11 = class extends _chunkSFELBJVQjs.Exception {constructor(...args11) { super(...args11); _class11.prototype.__init11.call(this); }
|
|
90
90
|
static {
|
|
91
91
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "InvalidSymmetricCipherKeyLengthException");
|
|
92
92
|
}
|
|
@@ -94,7 +94,7 @@ var InvalidSymmetricCipherKeyLengthException = (_class11 = class extends _chunkE
|
|
|
94
94
|
}, _class11);
|
|
95
95
|
|
|
96
96
|
// src/exceptions/crypto/symmetric/NotSupportCipherException.ts
|
|
97
|
-
var NotSupportCipherException = (_class12 = class extends
|
|
97
|
+
var NotSupportCipherException = (_class12 = class extends _chunkSFELBJVQjs.Exception {constructor(...args12) { super(...args12); _class12.prototype.__init12.call(this); }
|
|
98
98
|
static {
|
|
99
99
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "NotSupportCipherException");
|
|
100
100
|
}
|
|
@@ -102,7 +102,7 @@ var NotSupportCipherException = (_class12 = class extends _chunkES3Q6J7Ajs.Excep
|
|
|
102
102
|
}, _class12);
|
|
103
103
|
|
|
104
104
|
// src/exceptions/crypto/symmetric/SymmetricDecryptException.ts
|
|
105
|
-
var SymmetricDecryptException = (_class13 = class extends
|
|
105
|
+
var SymmetricDecryptException = (_class13 = class extends _chunkSFELBJVQjs.Exception {constructor(...args13) { super(...args13); _class13.prototype.__init13.call(this); }
|
|
106
106
|
static {
|
|
107
107
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "SymmetricDecryptException");
|
|
108
108
|
}
|
|
@@ -110,7 +110,7 @@ var SymmetricDecryptException = (_class13 = class extends _chunkES3Q6J7Ajs.Excep
|
|
|
110
110
|
}, _class13);
|
|
111
111
|
|
|
112
112
|
// src/exceptions/crypto/symmetric/SymmetricEncryptException.ts
|
|
113
|
-
var SymmetricEncryptException = (_class14 = class extends
|
|
113
|
+
var SymmetricEncryptException = (_class14 = class extends _chunkSFELBJVQjs.Exception {constructor(...args14) { super(...args14); _class14.prototype.__init14.call(this); }
|
|
114
114
|
static {
|
|
115
115
|
_chunk7LXDFQCYjs.__name.call(void 0, this, "SymmetricEncryptException");
|
|
116
116
|
}
|