Certificate information

interface CertificateInfo {
    expired: boolean;
    issuer: string;
    selfSigned: boolean;
    subject: string;
    subjectAlternativeNames: string[];
    validTo: string;
}

Properties

expired: boolean

Expired certificate

issuer: string

Certificate issuer

selfSigned: boolean

Self-signed certificate

subject: string

Certificate subject

subjectAlternativeNames: string[]

Certificate subject alternative names

validTo: string

Certificate is valid until