Skip to main content

Encrypted Storage

For mobile usage only.

The Encrypted Storage helps you manage your passwords and other encrypted information across your Mobile devices and uses end-to-end encryption to protect your information, ensuring that only you can access your data.

SET

Sets a value in the Encrypted Storage with the provided key.

quick.encryptedStorage.set(key: string, value: string)

quick.encryptedStorage.set("encryptedStorageKey1","encryptedStorageValue1");

GET

Gets the value from the Encrypted Storage associated with the provided key.

quick.encryptedStorage.get(key: string): string

let encryptedStorageValue1 = quick.encryptedStorage.get("encryptedStorageKey1");

CLEAR

Clears all values from the Encrypted Storage.

quick.encryptedStorage.clear()

quick.encryptedStorage.clear();

DELETE

Deletes the value from the Encrypted Storage associated with the provided key.

quick.encryptedStorage.delete(key: string)

quick.encryptedStorage.delete("encryptedStorageKey1");

Example Usage

encryptedStorage_Sample