Important
This package was renamed please use the new package name! @evva/capacitor-secure-storage-plugin
Capacitor plugin for storing string values securly on iOS and Android.
npm install @evva/capacitor-secure-storage-plugin
npm install @evva/[email protected]
For version lower than 5 please refer to https://github.com/martinkasa/capacitor-secure-storage-plugin
import { SecureStoragePlugin } from '@evva/capacitor-secure-storage-plugin';
const key = 'username';
const value = 'hellokitty2';
SecureStoragePlugin.set({ key, value })
.then(success => console.log(success))
const key = 'username';
SecureStoragePlugin.get({ key })
.then(value => {
console.log(value);
})
.catch(error => {
console.log('Item with specified key does not exist.');
});
async getUsername(key: string) {
return await SecureStoragePlugin.get({ key });
}
Prop | Type |
---|---|
get |
(options: { key: string; accessibility?: string; group?: string; isSynchronizable?: boolean; }) => Promise<{ value: string; }> |
set |
(options: { key: string; value: string; accessibility?: string; group?: string; isSynchronizable?: boolean; }) => Promise<{ value: boolean; }> |
remove |
(options: { key: string; accessibility?: string; group?: string; isSynchronizable?: boolean; }) => Promise<{ value: boolean; }> |
clear |
(options?: { accessibility?: string; group?: string; isSynchronizable?: boolean; }) => Promise<{ value: boolean; }> |
keys |
(options?: { accessibility?: string; group?: string; }) => Promise<{ value: string[]; }> |
getPlatform |
() => Promise<{ value: string; }> |
This plugin uses the SimpleKeychain Swift library for iOS.
On Android it is implemented by AndroidKeyStore and SharedPreferences. Source: Apriorit
There is no secure storage in browser (not because it is not implemented by this plugin, but it does not exist at all). Values are stored in LocalStorage, but they are at least base64 encoded. Plugin adds 'capsec' prefix to keys to avoid conflicts with other data stored in LocalStorage.