@bluelibs/runner - v6.3.1
    Preparing search index...

    Interface RemoteLaneBindingAuthJwtAsymmetric

    interface RemoteLaneBindingAuthJwtAsymmetric {
        algorithm?: RemoteLaneJwtAsymmetricAlgorithm;
        clockSkewMs?: number;
        header?: string;
        mode: "jwt_asymmetric";
        privateKey?: string;
        privateKeyKid?: string;
        publicKey?: string;
        publicKeysByKid?: Record<string, string>;
        tokenTtlMs?: number;
    }
    Index

    Properties

    clockSkewMs?: number
    header?: string
    mode: "jwt_asymmetric"
    privateKey?: string

    Private key used to sign outbound lane tokens.

    privateKeyKid?: string

    kid attached to produced tokens when privateKey is present.

    publicKey?: string

    Single public key used for token verification.

    publicKeysByKid?: Record<string, string>

    Keyset used to resolve verification key by token kid.

    tokenTtlMs?: number