import { CertificateType } from "../types/CertificateType"; import { KmipObject } from "./KmipObject"; /** * A Managed Cryptographic Object that is a digital certificate. It is a * DER-encoded X.509 public key certificate. Object Encoding REQUIRED * Certificate Structure Certificate Type Enumeration Yes Certificate Value Byte * String Yes */ export declare class Certificate extends KmipObject { private _certificateType; private _certificateValue; constructor(certificateType: CertificateType, certificateValue: number[]); get certificateType(): CertificateType; set certificateType(value: CertificateType); get certificateValue(): number[]; set certificateValue(value: number[]); equals(o: Object): boolean; toString(): string; } //# sourceMappingURL=Certificate.d.ts.map