igcv3 - v1.1.0
    Preparing search index...

    Interface InspectOptions

    CLI options for the inspect command. Controls what information to display and output format.

    interface InspectOptions {
        key?: string;
        format?: string;
        out?: string;
        dates?: boolean;
        subject?: boolean;
        issuer?: boolean;
        serial?: boolean;
        serialFormat?: SerialFormat;
        modulus?: boolean;
        fingerprint?: boolean;
        pubkey?: boolean;
        chain?: boolean;
        raw?: boolean;
        json?: boolean;
        matchOnly?: boolean;
    }
    Index

    Properties

    key?: string

    Path to private key for key-pair verification

    format?: string

    Output format for conversion (pem, der)

    out?: string

    Output file path for conversion

    dates?: boolean

    Display validity dates only

    subject?: boolean

    Display subject DN only

    issuer?: boolean

    Display issuer DN only

    serial?: boolean

    Display serial number only

    serialFormat?: SerialFormat

    Serial number display format

    modulus?: boolean

    Display RSA modulus (for key matching)

    fingerprint?: boolean

    Display SHA-1/SHA-256 fingerprints

    pubkey?: boolean

    Extract and display public key

    chain?: boolean

    Validate certificate chain (AKI/SKI)

    raw?: boolean

    Display OpenSSL-style raw dump

    json?: boolean

    Output as JSON (for scripting)

    matchOnly?: boolean

    Output only true/false for key match verification (requires --key)