x509-ts
Version:
Encode and decode X.509 (TLS) Certificates, Attribute Certificates, CRLs, and more.
13 lines • 637 B
TypeScript
import { DERElement } from "asn1-ts";
import ReasonFlags from "./ReasonFlags";
export default class DistributionPoint {
readonly distributionPoint?: DERElement | undefined;
readonly reasons?: ReasonFlags | undefined;
readonly cRLIssuer?: DERElement[] | undefined;
constructor(distributionPoint?: DERElement | undefined, reasons?: ReasonFlags | undefined, cRLIssuer?: DERElement[] | undefined);
static fromElement(value: DERElement): DistributionPoint;
toElement(): DERElement;
static fromBytes(value: Uint8Array): DistributionPoint;
toBytes(): Uint8Array;
}
//# sourceMappingURL=DistributionPoint.d.ts.map