pkcs-ts
Version:
PKCS #1 through #15 (Except #11) - Private and Public Keys, Certificates, and More
62 lines • 3.04 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports._encode_SecretBag = exports._decode_SecretBag = exports._extension_additions_list_spec_for_SecretBag = exports._root_component_type_list_2_spec_for_SecretBag = exports._root_component_type_list_1_spec_for_SecretBag = exports.SecretBag = exports.SecretTypes = void 0;
const tslib_1 = require("tslib");
const asn1_ts_1 = require("asn1-ts");
const $ = tslib_1.__importStar(require("asn1-ts/dist/node/functional"));
var SecretTypes_osa_1 = require("../PKCS-12/SecretTypes.osa");
Object.defineProperty(exports, "SecretTypes", { enumerable: true, get: function () { return SecretTypes_osa_1.SecretTypes; } });
class SecretBag {
constructor(secretTypeId, secretValue) {
this.secretTypeId = secretTypeId;
this.secretValue = secretValue;
}
static _from_object(_o) {
return new SecretBag(_o.secretTypeId, _o.secretValue);
}
}
exports.SecretBag = SecretBag;
exports._root_component_type_list_1_spec_for_SecretBag = [
new $.ComponentSpec("secretTypeId", false, $.hasTag(asn1_ts_1.ASN1TagClass.universal, 6), undefined, undefined),
new $.ComponentSpec("secretValue", false, $.hasTag(asn1_ts_1.ASN1TagClass.context, 0), undefined, undefined),
];
exports._root_component_type_list_2_spec_for_SecretBag = [];
exports._extension_additions_list_spec_for_SecretBag = [];
let _cached_decoder_for_SecretBag = null;
function _decode_SecretBag(el) {
if (!_cached_decoder_for_SecretBag) {
_cached_decoder_for_SecretBag = function (el) {
const sequence = el.sequence;
if (sequence.length < 2) {
throw new asn1_ts_1.ASN1ConstructionError("SecretBag contained only " +
sequence.length.toString() +
" elements.");
}
sequence[0].name = "secretTypeId";
sequence[1].name = "secretValue";
let secretTypeId;
let secretValue;
secretTypeId = $._decodeObjectIdentifier(sequence[0]);
secretValue = $._decode_explicit(() => $._decodeAny)(sequence[1]);
return new SecretBag(secretTypeId, secretValue);
};
}
return _cached_decoder_for_SecretBag(el);
}
exports._decode_SecretBag = _decode_SecretBag;
let _cached_encoder_for_SecretBag = null;
function _encode_SecretBag(value, elGetter) {
if (!_cached_encoder_for_SecretBag) {
_cached_encoder_for_SecretBag = function (value, elGetter) {
return $._encodeSequence([]
.concat([
$._encodeObjectIdentifier(value.secretTypeId, $.BER),
$._encode_explicit(asn1_ts_1.ASN1TagClass.context, 0, () => $._encodeAny, $.BER)(value.secretValue, $.BER),
])
.filter((c) => !!c), $.BER);
};
}
return _cached_encoder_for_SecretBag(value, elGetter);
}
exports._encode_SecretBag = _encode_SecretBag;
//# sourceMappingURL=SecretBag.ta.js.map