crl_freshest.js 929 B

12345678910111213141516171819
  1. "use strict";
  2. var FreshestCRL_1;
  3. Object.defineProperty(exports, "__esModule", { value: true });
  4. exports.FreshestCRL = exports.id_ce_freshestCRL = void 0;
  5. const tslib_1 = require("tslib");
  6. const asn1_schema_1 = require("@peculiar/asn1-schema");
  7. const object_identifiers_1 = require("../object_identifiers");
  8. const crl_distribution_points_1 = require("./crl_distribution_points");
  9. exports.id_ce_freshestCRL = `${object_identifiers_1.id_ce}.46`;
  10. let FreshestCRL = FreshestCRL_1 = class FreshestCRL extends crl_distribution_points_1.CRLDistributionPoints {
  11. constructor(items) {
  12. super(items);
  13. Object.setPrototypeOf(this, FreshestCRL_1.prototype);
  14. }
  15. };
  16. exports.FreshestCRL = FreshestCRL;
  17. exports.FreshestCRL = FreshestCRL = FreshestCRL_1 = tslib_1.__decorate([
  18. (0, asn1_schema_1.AsnType)({ type: asn1_schema_1.AsnTypeTypes.Sequence, itemType: crl_distribution_points_1.DistributionPoint })
  19. ], FreshestCRL);