x509-ts
Version:
Encode and decode X.509 (TLS) Certificates, Attribute Certificates, CRLs, and more.
18 lines • 481 B
TypeScript
import { DERElement } from "asn1-ts";
export interface Enbyteable {
toBytes(): Uint8Array;
}
export interface Debyteable {
fromBytes(value: Uint8Array): void;
}
export interface Byteable extends Enbyteable, Debyteable {
}
export interface Enelementable {
toElement(): DERElement;
}
export interface Deelementable {
fromElement(value: DERElement): void;
}
export interface Elementable extends Enelementable, Deelementable {
}
//# sourceMappingURL=interfaces.d.ts.map