Racehorse
    Preparing search index...

    Interface BiometricEncryptedStorageManager

    interface BiometricEncryptedStorageManager {
        delete(key: string): boolean;
        get(
            key: string,
            config?: BiometricConfig,
        ): Promise<BiometricEncryptedStorageGetResult>;
        has(key: string): boolean;
        set(
            key: string,
            value: string,
            config?: BiometricConfig,
        ): Promise<BiometricEncryptedStorageSetResult>;
    }
    Index

    Methods

    Methods

    • Deletes the key and the associated encrypted value.

      Parameters

      • key: string

      Returns boolean

      true if the key was deleted, or false if the key didn't exist.

    • Returns true if the key exists in the storage, or false otherwise.

      Parameters

      • key: string

      Returns boolean