UNPKG

@peculiar/asn1-x509

Version:

ASN.1 schema for X.509 certificates, certificate revocation lists, and related profile structures defined in RFC 5280.

69 lines (68 loc) 2.08 kB
import { __decorate } from "tslib"; import { AsnProp, AsnPropTypes, AsnIntegerArrayBufferConverter, } from "@peculiar/asn1-schema"; import { AlgorithmIdentifier } from "./algorithm_identifier.js"; import { Name } from "./name.js"; import { Time } from "./time.js"; import { Extension } from "./extension.js"; export class RevokedCertificate { userCertificate = new ArrayBuffer(0); revocationDate = new Time(); crlEntryExtensions; constructor(params = {}) { Object.assign(this, params); } } __decorate([ AsnProp({ type: AsnPropTypes.Integer, converter: AsnIntegerArrayBufferConverter, }) ], RevokedCertificate.prototype, "userCertificate", void 0); __decorate([ AsnProp({ type: Time }) ], RevokedCertificate.prototype, "revocationDate", void 0); __decorate([ AsnProp({ type: Extension, optional: true, repeated: "sequence", }) ], RevokedCertificate.prototype, "crlEntryExtensions", void 0); export class TBSCertList { version; signature = new AlgorithmIdentifier(); issuer = new Name(); thisUpdate = new Time(); nextUpdate; revokedCertificates; crlExtensions; constructor(params = {}) { Object.assign(this, params); } } __decorate([ AsnProp({ type: AsnPropTypes.Integer, optional: true, }) ], TBSCertList.prototype, "version", void 0); __decorate([ AsnProp({ type: AlgorithmIdentifier }) ], TBSCertList.prototype, "signature", void 0); __decorate([ AsnProp({ type: Name }) ], TBSCertList.prototype, "issuer", void 0); __decorate([ AsnProp({ type: Time }) ], TBSCertList.prototype, "thisUpdate", void 0); __decorate([ AsnProp({ type: Time, optional: true, }) ], TBSCertList.prototype, "nextUpdate", void 0); __decorate([ AsnProp({ type: RevokedCertificate, repeated: "sequence", optional: true, }) ], TBSCertList.prototype, "revokedCertificates", void 0); __decorate([ AsnProp({ type: Extension, optional: true, context: 0, repeated: "sequence", }) ], TBSCertList.prototype, "crlExtensions", void 0);