Trevixal API
    Preparing search index...

    Interface EncryptWithKeyParams

    Parameters for encryptWithKey: the salt and rounds the key was derived with.

    interface EncryptWithKeyParams {
        expiresAt?: number | null;
        iterations: number;
        salt: Uint8Array<ArrayBuffer>;
        title?: string;
    }
    Index
    expiresAt?: number | null
    iterations: number
    salt: Uint8Array<ArrayBuffer>
    title?: string