igcv3 - v1.1.0
    Preparing search index...

    Interface CertCache

    Certificate parse cache to avoid redundant crypto operations. Maps file paths to parsed certificates.

    interface CertCache {
        forge: Map<string, Certificate | null>;
        universal: Map<string, CertificateInfo | null>;
    }
    Index

    Properties

    Properties

    forge: Map<string, Certificate | null>

    Cache for forge-parsed certificates (RSA)

    universal: Map<string, CertificateInfo | null>

    Cache for universal-parsed certificates (RSA + ECDSA/Ed25519)