feat: 초기 프로젝트 설정 및 룰.md 파일 추가
This commit is contained in:
39
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/algorithms.js
generated
vendored
Normal file
39
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/algorithms.js
generated
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.sha512_256WithRSAEncryption = exports.sha512_224WithRSAEncryption = exports.sha512WithRSAEncryption = exports.sha384WithRSAEncryption = exports.sha256WithRSAEncryption = exports.sha224WithRSAEncryption = exports.sha1WithRSAEncryption = exports.md5WithRSAEncryption = exports.md2WithRSAEncryption = exports.rsaEncryption = exports.pSpecifiedEmpty = exports.mgf1SHA1 = exports.sha512_256 = exports.sha512_224 = exports.sha512 = exports.sha384 = exports.sha256 = exports.sha224 = exports.sha1 = exports.md4 = exports.md2 = void 0;
|
||||
const asn1_schema_1 = require("@peculiar/asn1-schema");
|
||||
const asn1_x509_1 = require("@peculiar/asn1-x509");
|
||||
const oid = require("./object_identifiers");
|
||||
function create(algorithm) {
|
||||
return new asn1_x509_1.AlgorithmIdentifier({ algorithm, parameters: null });
|
||||
}
|
||||
exports.md2 = create(oid.id_md2);
|
||||
exports.md4 = create(oid.id_md5);
|
||||
exports.sha1 = create(oid.id_sha1);
|
||||
exports.sha224 = create(oid.id_sha224);
|
||||
exports.sha256 = create(oid.id_sha256);
|
||||
exports.sha384 = create(oid.id_sha384);
|
||||
exports.sha512 = create(oid.id_sha512);
|
||||
exports.sha512_224 = create(oid.id_sha512_224);
|
||||
exports.sha512_256 = create(oid.id_sha512_256);
|
||||
exports.mgf1SHA1 = new asn1_x509_1.AlgorithmIdentifier({
|
||||
algorithm: oid.id_mgf1,
|
||||
parameters: asn1_schema_1.AsnConvert.serialize(exports.sha1),
|
||||
});
|
||||
exports.pSpecifiedEmpty = new asn1_x509_1.AlgorithmIdentifier({
|
||||
algorithm: oid.id_pSpecified,
|
||||
parameters: asn1_schema_1.AsnConvert.serialize(asn1_schema_1.AsnOctetStringConverter.toASN(new Uint8Array([
|
||||
0xda, 0x39, 0xa3, 0xee, 0x5e, 0x6b, 0x4b, 0x0d, 0x32, 0x55, 0xbf, 0xef, 0x95, 0x60, 0x18,
|
||||
0x90, 0xaf, 0xd8, 0x07, 0x09,
|
||||
]).buffer)),
|
||||
});
|
||||
exports.rsaEncryption = create(oid.id_rsaEncryption);
|
||||
exports.md2WithRSAEncryption = create(oid.id_md2WithRSAEncryption);
|
||||
exports.md5WithRSAEncryption = create(oid.id_md5WithRSAEncryption);
|
||||
exports.sha1WithRSAEncryption = create(oid.id_sha1WithRSAEncryption);
|
||||
exports.sha224WithRSAEncryption = create(oid.id_sha512_224WithRSAEncryption);
|
||||
exports.sha256WithRSAEncryption = create(oid.id_sha512_256WithRSAEncryption);
|
||||
exports.sha384WithRSAEncryption = create(oid.id_sha384WithRSAEncryption);
|
||||
exports.sha512WithRSAEncryption = create(oid.id_sha512WithRSAEncryption);
|
||||
exports.sha512_224WithRSAEncryption = create(oid.id_sha512_224WithRSAEncryption);
|
||||
exports.sha512_256WithRSAEncryption = create(oid.id_sha512_256WithRSAEncryption);
|
||||
9
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/index.js
generated
vendored
Normal file
9
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/index.js
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const tslib_1 = require("tslib");
|
||||
tslib_1.__exportStar(require("./parameters"), exports);
|
||||
tslib_1.__exportStar(require("./algorithms"), exports);
|
||||
tslib_1.__exportStar(require("./object_identifiers"), exports);
|
||||
tslib_1.__exportStar(require("./other_prime_info"), exports);
|
||||
tslib_1.__exportStar(require("./rsa_private_key"), exports);
|
||||
tslib_1.__exportStar(require("./rsa_public_key"), exports);
|
||||
28
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/object_identifiers.js
generated
vendored
Normal file
28
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/object_identifiers.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.id_mgf1 = exports.id_md5 = exports.id_md2 = exports.id_sha512_256 = exports.id_sha512_224 = exports.id_sha512 = exports.id_sha384 = exports.id_sha256 = exports.id_sha224 = exports.id_sha1 = exports.id_sha512_256WithRSAEncryption = exports.id_sha512_224WithRSAEncryption = exports.id_sha512WithRSAEncryption = exports.id_sha384WithRSAEncryption = exports.id_sha256WithRSAEncryption = exports.id_ssha224WithRSAEncryption = exports.id_sha224WithRSAEncryption = exports.id_sha1WithRSAEncryption = exports.id_md5WithRSAEncryption = exports.id_md2WithRSAEncryption = exports.id_RSASSA_PSS = exports.id_pSpecified = exports.id_RSAES_OAEP = exports.id_rsaEncryption = exports.id_pkcs_1 = void 0;
|
||||
exports.id_pkcs_1 = "1.2.840.113549.1.1";
|
||||
exports.id_rsaEncryption = `${exports.id_pkcs_1}.1`;
|
||||
exports.id_RSAES_OAEP = `${exports.id_pkcs_1}.7`;
|
||||
exports.id_pSpecified = `${exports.id_pkcs_1}.9`;
|
||||
exports.id_RSASSA_PSS = `${exports.id_pkcs_1}.10`;
|
||||
exports.id_md2WithRSAEncryption = `${exports.id_pkcs_1}.2`;
|
||||
exports.id_md5WithRSAEncryption = `${exports.id_pkcs_1}.4`;
|
||||
exports.id_sha1WithRSAEncryption = `${exports.id_pkcs_1}.5`;
|
||||
exports.id_sha224WithRSAEncryption = `${exports.id_pkcs_1}.14`;
|
||||
exports.id_ssha224WithRSAEncryption = exports.id_sha224WithRSAEncryption;
|
||||
exports.id_sha256WithRSAEncryption = `${exports.id_pkcs_1}.11`;
|
||||
exports.id_sha384WithRSAEncryption = `${exports.id_pkcs_1}.12`;
|
||||
exports.id_sha512WithRSAEncryption = `${exports.id_pkcs_1}.13`;
|
||||
exports.id_sha512_224WithRSAEncryption = `${exports.id_pkcs_1}.15`;
|
||||
exports.id_sha512_256WithRSAEncryption = `${exports.id_pkcs_1}.16`;
|
||||
exports.id_sha1 = "1.3.14.3.2.26";
|
||||
exports.id_sha224 = "2.16.840.1.101.3.4.2.4";
|
||||
exports.id_sha256 = "2.16.840.1.101.3.4.2.1";
|
||||
exports.id_sha384 = "2.16.840.1.101.3.4.2.2";
|
||||
exports.id_sha512 = "2.16.840.1.101.3.4.2.3";
|
||||
exports.id_sha512_224 = "2.16.840.1.101.3.4.2.5";
|
||||
exports.id_sha512_256 = "2.16.840.1.101.3.4.2.6";
|
||||
exports.id_md2 = "1.2.840.113549.2.2";
|
||||
exports.id_md5 = "1.2.840.113549.2.5";
|
||||
exports.id_mgf1 = `${exports.id_pkcs_1}.8`;
|
||||
34
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/other_prime_info.js
generated
vendored
Normal file
34
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/other_prime_info.js
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
"use strict";
|
||||
var OtherPrimeInfos_1;
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.OtherPrimeInfos = exports.OtherPrimeInfo = void 0;
|
||||
const tslib_1 = require("tslib");
|
||||
const asn1_schema_1 = require("@peculiar/asn1-schema");
|
||||
class OtherPrimeInfo {
|
||||
constructor(params = {}) {
|
||||
this.prime = new ArrayBuffer(0);
|
||||
this.exponent = new ArrayBuffer(0);
|
||||
this.coefficient = new ArrayBuffer(0);
|
||||
Object.assign(this, params);
|
||||
}
|
||||
}
|
||||
exports.OtherPrimeInfo = OtherPrimeInfo;
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], OtherPrimeInfo.prototype, "prime", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], OtherPrimeInfo.prototype, "exponent", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], OtherPrimeInfo.prototype, "coefficient", void 0);
|
||||
let OtherPrimeInfos = OtherPrimeInfos_1 = class OtherPrimeInfos extends asn1_schema_1.AsnArray {
|
||||
constructor(items) {
|
||||
super(items);
|
||||
Object.setPrototypeOf(this, OtherPrimeInfos_1.prototype);
|
||||
}
|
||||
};
|
||||
exports.OtherPrimeInfos = OtherPrimeInfos;
|
||||
exports.OtherPrimeInfos = OtherPrimeInfos = OtherPrimeInfos_1 = tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnType)({ type: asn1_schema_1.AsnTypeTypes.Sequence, itemType: OtherPrimeInfo })
|
||||
], OtherPrimeInfos);
|
||||
6
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/parameters/index.js
generated
vendored
Normal file
6
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/parameters/index.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const tslib_1 = require("tslib");
|
||||
tslib_1.__exportStar(require("./rsaes_oaep"), exports);
|
||||
tslib_1.__exportStar(require("./rsassa_pss"), exports);
|
||||
tslib_1.__exportStar(require("./rsassa_pkcs1_v1_5"), exports);
|
||||
33
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/parameters/rsaes_oaep.js
generated
vendored
Normal file
33
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/parameters/rsaes_oaep.js
generated
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.RSAES_OAEP = exports.RsaEsOaepParams = void 0;
|
||||
const tslib_1 = require("tslib");
|
||||
const asn1_schema_1 = require("@peculiar/asn1-schema");
|
||||
const asn1_x509_1 = require("@peculiar/asn1-x509");
|
||||
const object_identifiers_1 = require("../object_identifiers");
|
||||
const algorithms_1 = require("../algorithms");
|
||||
class RsaEsOaepParams {
|
||||
constructor(params = {}) {
|
||||
this.hashAlgorithm = new asn1_x509_1.AlgorithmIdentifier(algorithms_1.sha1);
|
||||
this.maskGenAlgorithm = new asn1_x509_1.AlgorithmIdentifier({
|
||||
algorithm: object_identifiers_1.id_mgf1,
|
||||
parameters: asn1_schema_1.AsnConvert.serialize(algorithms_1.sha1),
|
||||
});
|
||||
this.pSourceAlgorithm = new asn1_x509_1.AlgorithmIdentifier(algorithms_1.pSpecifiedEmpty);
|
||||
Object.assign(this, params);
|
||||
}
|
||||
}
|
||||
exports.RsaEsOaepParams = RsaEsOaepParams;
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_x509_1.AlgorithmIdentifier, context: 0, defaultValue: algorithms_1.sha1 })
|
||||
], RsaEsOaepParams.prototype, "hashAlgorithm", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_x509_1.AlgorithmIdentifier, context: 1, defaultValue: algorithms_1.mgf1SHA1 })
|
||||
], RsaEsOaepParams.prototype, "maskGenAlgorithm", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_x509_1.AlgorithmIdentifier, context: 2, defaultValue: algorithms_1.pSpecifiedEmpty })
|
||||
], RsaEsOaepParams.prototype, "pSourceAlgorithm", void 0);
|
||||
exports.RSAES_OAEP = new asn1_x509_1.AlgorithmIdentifier({
|
||||
algorithm: object_identifiers_1.id_RSAES_OAEP,
|
||||
parameters: asn1_schema_1.AsnConvert.serialize(new RsaEsOaepParams()),
|
||||
});
|
||||
20
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/parameters/rsassa_pkcs1_v1_5.js
generated
vendored
Normal file
20
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/parameters/rsassa_pkcs1_v1_5.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.DigestInfo = void 0;
|
||||
const tslib_1 = require("tslib");
|
||||
const asn1_x509_1 = require("@peculiar/asn1-x509");
|
||||
const asn1_schema_1 = require("@peculiar/asn1-schema");
|
||||
class DigestInfo {
|
||||
constructor(params = {}) {
|
||||
this.digestAlgorithm = new asn1_x509_1.AlgorithmIdentifier();
|
||||
this.digest = new asn1_schema_1.OctetString();
|
||||
Object.assign(this, params);
|
||||
}
|
||||
}
|
||||
exports.DigestInfo = DigestInfo;
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_x509_1.AlgorithmIdentifier })
|
||||
], DigestInfo.prototype, "digestAlgorithm", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.OctetString })
|
||||
], DigestInfo.prototype, "digest", void 0);
|
||||
37
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/parameters/rsassa_pss.js
generated
vendored
Normal file
37
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/parameters/rsassa_pss.js
generated
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.RSASSA_PSS = exports.RsaSaPssParams = void 0;
|
||||
const tslib_1 = require("tslib");
|
||||
const asn1_schema_1 = require("@peculiar/asn1-schema");
|
||||
const asn1_x509_1 = require("@peculiar/asn1-x509");
|
||||
const object_identifiers_1 = require("../object_identifiers");
|
||||
const algorithms_1 = require("../algorithms");
|
||||
class RsaSaPssParams {
|
||||
constructor(params = {}) {
|
||||
this.hashAlgorithm = new asn1_x509_1.AlgorithmIdentifier(algorithms_1.sha1);
|
||||
this.maskGenAlgorithm = new asn1_x509_1.AlgorithmIdentifier({
|
||||
algorithm: object_identifiers_1.id_mgf1,
|
||||
parameters: asn1_schema_1.AsnConvert.serialize(algorithms_1.sha1),
|
||||
});
|
||||
this.saltLength = 20;
|
||||
this.trailerField = 1;
|
||||
Object.assign(this, params);
|
||||
}
|
||||
}
|
||||
exports.RsaSaPssParams = RsaSaPssParams;
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_x509_1.AlgorithmIdentifier, context: 0, defaultValue: algorithms_1.sha1 })
|
||||
], RsaSaPssParams.prototype, "hashAlgorithm", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_x509_1.AlgorithmIdentifier, context: 1, defaultValue: algorithms_1.mgf1SHA1 })
|
||||
], RsaSaPssParams.prototype, "maskGenAlgorithm", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, context: 2, defaultValue: 20 })
|
||||
], RsaSaPssParams.prototype, "saltLength", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, context: 3, defaultValue: 1 })
|
||||
], RsaSaPssParams.prototype, "trailerField", void 0);
|
||||
exports.RSASSA_PSS = new asn1_x509_1.AlgorithmIdentifier({
|
||||
algorithm: object_identifiers_1.id_RSASSA_PSS,
|
||||
parameters: asn1_schema_1.AsnConvert.serialize(new RsaSaPssParams()),
|
||||
});
|
||||
51
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/rsa_private_key.js
generated
vendored
Normal file
51
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/rsa_private_key.js
generated
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.RSAPrivateKey = void 0;
|
||||
const tslib_1 = require("tslib");
|
||||
const asn1_schema_1 = require("@peculiar/asn1-schema");
|
||||
const other_prime_info_1 = require("./other_prime_info");
|
||||
class RSAPrivateKey {
|
||||
constructor(params = {}) {
|
||||
this.version = 0;
|
||||
this.modulus = new ArrayBuffer(0);
|
||||
this.publicExponent = new ArrayBuffer(0);
|
||||
this.privateExponent = new ArrayBuffer(0);
|
||||
this.prime1 = new ArrayBuffer(0);
|
||||
this.prime2 = new ArrayBuffer(0);
|
||||
this.exponent1 = new ArrayBuffer(0);
|
||||
this.exponent2 = new ArrayBuffer(0);
|
||||
this.coefficient = new ArrayBuffer(0);
|
||||
Object.assign(this, params);
|
||||
}
|
||||
}
|
||||
exports.RSAPrivateKey = RSAPrivateKey;
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer })
|
||||
], RSAPrivateKey.prototype, "version", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], RSAPrivateKey.prototype, "modulus", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], RSAPrivateKey.prototype, "publicExponent", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], RSAPrivateKey.prototype, "privateExponent", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], RSAPrivateKey.prototype, "prime1", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], RSAPrivateKey.prototype, "prime2", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], RSAPrivateKey.prototype, "exponent1", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], RSAPrivateKey.prototype, "exponent2", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], RSAPrivateKey.prototype, "coefficient", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: other_prime_info_1.OtherPrimeInfos, optional: true })
|
||||
], RSAPrivateKey.prototype, "otherPrimeInfos", void 0);
|
||||
19
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/rsa_public_key.js
generated
vendored
Normal file
19
api.hyungi.net/node_modules/@peculiar/asn1-rsa/build/cjs/rsa_public_key.js
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.RSAPublicKey = void 0;
|
||||
const tslib_1 = require("tslib");
|
||||
const asn1_schema_1 = require("@peculiar/asn1-schema");
|
||||
class RSAPublicKey {
|
||||
constructor(params = {}) {
|
||||
this.modulus = new ArrayBuffer(0);
|
||||
this.publicExponent = new ArrayBuffer(0);
|
||||
Object.assign(this, params);
|
||||
}
|
||||
}
|
||||
exports.RSAPublicKey = RSAPublicKey;
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], RSAPublicKey.prototype, "modulus", void 0);
|
||||
tslib_1.__decorate([
|
||||
(0, asn1_schema_1.AsnProp)({ type: asn1_schema_1.AsnPropTypes.Integer, converter: asn1_schema_1.AsnIntegerArrayBufferConverter })
|
||||
], RSAPublicKey.prototype, "publicExponent", void 0);
|
||||
Reference in New Issue
Block a user