igcv3 - v1.1.0
    Preparing search index...

    Interface DetectedChainRoles

    Result of automatic chain role detection.

    interface DetectedChainRoles {
        leaf: Certificate | null;
        allLeafCandidates: Certificate[];
        intermediates: Certificate[];
        root: Certificate | null;
        unclassified: Certificate[];
        detectionLog: string[];
    }
    Index

    Properties

    leaf: Certificate | null

    The leaf certificate (end-entity, not issuer of any other cert)

    allLeafCandidates: Certificate[]

    All leaf candidates (when multiple chains detected)

    intermediates: Certificate[]

    Intermediate certificates (issue others but are not self-signed)

    root: Certificate | null

    The root certificate (self-signed)

    unclassified: Certificate[]

    Certificates that couldn't be classified

    detectionLog: string[]

    Human-readable detection log