crl_freshest.js 659 B

12345678910111213141516
  1. var FreshestCRL_1;
  2. import { __decorate } from "tslib";
  3. import { AsnType, AsnTypeTypes } from "@peculiar/asn1-schema";
  4. import { id_ce } from "../object_identifiers";
  5. import { CRLDistributionPoints, DistributionPoint } from "./crl_distribution_points";
  6. export const id_ce_freshestCRL = `${id_ce}.46`;
  7. let FreshestCRL = FreshestCRL_1 = class FreshestCRL extends CRLDistributionPoints {
  8. constructor(items) {
  9. super(items);
  10. Object.setPrototypeOf(this, FreshestCRL_1.prototype);
  11. }
  12. };
  13. FreshestCRL = FreshestCRL_1 = __decorate([
  14. AsnType({ type: AsnTypeTypes.Sequence, itemType: DistributionPoint })
  15. ], FreshestCRL);
  16. export { FreshestCRL };