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) 403 B
import { CRLDistributionPoints, DistributionPoint } from "./crl_distribution_points"; /** * ```asn1 * id-ce-freshestCRL OBJECT IDENTIFIER ::= { id-ce 46 } * ``` */ export declare const id_ce_freshestCRL = "2.5.29.46"; /** * ```asn1 * FreshestCRL ::= CRLDistributionPoints * ``` */ export declare class FreshestCRL extends CRLDistributionPoints { constructor(items?: DistributionPoint[]); }