@ipshipyard/keychain
    Preparing search index...

    Interface Cipher

    interface Cipher {
        decrypt(
            salt: Uint8Array,
            iv: Uint8Array,
            cipherText: Uint8Array,
            options?: CipherOptions,
        ): Promise<Uint8Array<ArrayBuffer>>;
        encrypt(
            data: Uint8Array,
            options?: AbortOptions,
        ): Promise<EncryptionResult>;
    }
    Index

    Methods