@mxraven/mail - v0.2.0
    Preparing search index...

    Interface VerifierOptions

    Options for a Verifier.

    interface VerifierOptions {
        keys?: ReadonlyMap<string, string>;
        maxBodyBytes?: number;
        secret?: string;
        tolerance?: number;
    }
    Index
    keys?: ReadonlyMap<string, string>

    Per-key secrets for key rotation, keyed by signing key ID.

    maxBodyBytes?: number

    The maximum request body size in bytes. Defaults to 1 MiB.

    secret?: string

    The signing secret, used as literal bytes and not decoded.

    tolerance?: number

    The maximum accepted clock skew in milliseconds. Defaults to 5 minutes; 0 disables the check.