key_bag.js 306 B

123456789
  1. import { __decorate } from "tslib";
  2. import { PrivateKeyInfo } from "@peculiar/asn1-pkcs8";
  3. import { AsnType, AsnTypeTypes } from "@peculiar/asn1-schema";
  4. let KeyBag = class KeyBag extends PrivateKeyInfo {
  5. };
  6. KeyBag = __decorate([
  7. AsnType({ type: AsnTypeTypes.Sequence })
  8. ], KeyBag);
  9. export { KeyBag };