import { __decorate } from "tslib"; import { AsnProp, AsnPropTypes } from "@peculiar/asn1-schema"; import { AlgorithmIdentifier } from "@peculiar/asn1-x509"; import { AttributeCertificateInfo } from "./attribute_certificate_info.js"; export class AttributeCertificate { acinfo = new AttributeCertificateInfo(); signatureAlgorithm = new AlgorithmIdentifier(); signatureValue = new ArrayBuffer(0); constructor(params = {}) { Object.assign(this, params); } } __decorate([ AsnProp({ type: AttributeCertificateInfo }) ], AttributeCertificate.prototype, "acinfo", void 0); __decorate([ AsnProp({ type: AlgorithmIdentifier }) ], AttributeCertificate.prototype, "signatureAlgorithm", void 0); __decorate([ AsnProp({ type: AsnPropTypes.BitString }) ], AttributeCertificate.prototype, "signatureValue", void 0);