Information about the issuer of leaf TLS certificates and the trusted root CA certificate. TLSInfo

interface TLSInfo {
    CertIssuerPublicKey?: string;
    CertIssuerSubject?: string;
    TrustRoot?: string;
}

Properties

CertIssuerPublicKey?: string

The base64-url-safe-encoded raw public key bytes of the issuer.

CertIssuerSubject?: string

The base64-url-safe-encoded raw subject bytes of the issuer.

TrustRoot?: string

The root CA certificate(s) that are used to validate leaf TLS certificates.