igcv3 - v1.1.0
    Preparing search index...

    Interface AutoChainResult

    Result of buildAutoChain operation.

    interface AutoChainResult {
        chain: Certificate[] | null;
        log: string[];
        multipleLeafs: boolean;
        leafCandidates: Certificate[];
    }
    Index

    Properties

    chain: Certificate[] | null

    The sorted certificate chain, or null if failed

    log: string[]

    Human-readable log of the operation

    multipleLeafs: boolean

    Whether multiple leaf candidates were detected

    leafCandidates: Certificate[]

    All leaf candidates (for error reporting)