Skip to content

evva-sfw/capacitor-secure-storage-plugin

 
 

Repository files navigation

Capacitor Secure Storage Plugin

NPM Version NPM Downloads GitHub package.json dynamic NPM Unpacked Size (with version) GitHub last commit GitHub branch check runs EVVA License

Capacitor plugin for storing string values securly on iOS and Android.

How to install

Capacitor 6

npm install @evva-sfw/capacitor-secure-storage-plugin

Capacitor 5

npm install @evva-sfw/[email protected]

Older versions

For version lower than 5 please refer to https://github.com/martinkasa/capacitor-secure-storage-plugin

Compatibility

iOS 15.0+

Android API Level 29+

Usage

import { SecureStoragePlugin } from '@evva-sfw/capacitor-secure-storage-plugin';

Methods

get(options: { key: string }): Promise<{ value: string }>

Note if item with specified key does not exist, throws an Error


set(options: { key: string; value: string }): Promise<{ value: boolean }>

Note return true in case of success otherwise throws an error


remove(options: { key: string }): Promise<{ value: boolean }>

Note return true in case of success otherwise throws an error


keys(): Promise<{ value: string[] }>

  clear(): Promise<{ value: boolean }>

Note return true in case of success otherwise throws an error


getPlatform(): Promise<{ value: string }>

Note return returns which implementation is used - one of 'web', 'ios' or 'android'

Example

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 });
}

Platform specific information

iOS

This plugin uses the SimpleKeychain Swift library for iOS.

Android

On Android it is implemented by AndroidKeyStore and SharedPreferences. Source: Apriorit

Web

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.

About

Capacitor plugin for storing string values securly on iOS and Android.

Resources

License

Stars

Watchers

Forks

Languages

  • Java 36.0%
  • Swift 21.3%
  • TypeScript 18.1%
  • SCSS 13.1%
  • Ruby 3.7%
  • HTML 3.3%
  • Other 4.5%