Library API
    Preparing search index...

    Interface StringifyOptions

    Configuration options for stringify() serialization.

    interface StringifyOptions {
        compact?: boolean;
        secret?: string;
        signed?: boolean;
    }
    Index
    compact?: boolean

    If false, uses legacy oneKey object envelopes instead of compact tagged strings (default: true)

    secret?: string

    Secret key or salt for signature calculation (required when signed is true)

    signed?: boolean

    If true, wraps the output with an integrity signature prefix ($sig::)