x509-ts
Version:
Encode and decode X.509 (TLS) Certificates, Attribute Certificates, CRLs, and more.
15 lines • 812 B
TypeScript
import ReasonFlags from "./ReasonFlags";
import { DERElement } from "asn1-ts";
export default class IssuingDistPointSyntax {
readonly distributionPoint?: DERElement | undefined;
readonly onlyContainsUserPublicKeyCerts: boolean;
readonly onlyContainsCACerts: boolean;
readonly onlySomeReasons?: ReasonFlags | undefined;
readonly indirectCRL: boolean;
constructor(distributionPoint?: DERElement | undefined, onlyContainsUserPublicKeyCerts?: boolean, onlyContainsCACerts?: boolean, onlySomeReasons?: ReasonFlags | undefined, indirectCRL?: boolean);
static fromElement(value: DERElement): IssuingDistPointSyntax;
toElement(): DERElement;
static fromBytes(value: Uint8Array): IssuingDistPointSyntax;
toBytes(): Uint8Array;
}
//# sourceMappingURL=IssuingDistPointSyntax.d.ts.map