UNPKG

@peculiar/asn1-x509

Version:

ASN.1 schema of `Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile` (RFC5280)

16 lines (15 loc) 295 B
/** * ```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); }