Documentation
    Preparing search index...

    Interface ShellSecretPersistence

    Shell secret persistence — runtime calls these to save/load the per-shell secret used for deterministic keypair derivation. The secret is a 32-byte random value generated once on first use.

    interface ShellSecretPersistence {
        get(): Uint8Array<ArrayBufferLike> | null;
        set(secret: Uint8Array): void;
    }
    Index

    Methods

    Methods