@peculiar/asn1-x509
Version:
ASN.1 schema for X.509 certificates, certificate revocation lists, and related profile structures defined in RFC 5280.
16 lines (15 loc) • 295 B
TypeScript
/**
* ```asn1
* id-ce-invalidityDate OBJECT IDENTIFIER ::= { id-ce 24 }
* ```
*/
export declare const id_ce_invalidityDate = "2.5.29.24";
/**
* ```asn1
* InvalidityDate ::= GeneralizedTime
* ```
*/
export declare class InvalidityDate {
value: Date;
constructor(value?: Date);
}