Skip to content

evva-sfw/capacitor-secure-storage-plugin

This branch is 105 commits ahead of, 4 commits behind martinkasa/capacitor-secure-storage-plugin:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

209fed1 · Feb 24, 2025
Feb 20, 2025
Feb 24, 2025
Feb 19, 2025
Oct 25, 2024
Feb 20, 2025
Sep 11, 2024
Oct 25, 2024
Sep 10, 2024
Sep 10, 2024
Sep 3, 2024
Jul 22, 2019
Sep 4, 2024
Feb 20, 2025
Sep 4, 2024
Feb 24, 2025
Oct 29, 2024
Jul 17, 2019
Feb 19, 2025
Feb 24, 2025
Feb 24, 2025
Sep 3, 2024
Oct 25, 2024

Repository files navigation

Capacitor Secure Storage Plugin

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

Important

This package was renamed please use the new package name! @evva/capacitor-secure-storage-plugin

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

How to install

Capacitor 7

npm install @evva/capacitor-secure-storage-plugin
npx cap sync

Capacitor 6

npm install @evva/capacitor-secure-storage-plugin@3.1.0
npx cap sync

Older versions

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

Compatibility

iOS 15.0+

Android API Level 29+

Usage

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

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

API

Interfaces

SecureStoragePluginInterface

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

Platform specific information

iOS

This plugin uses the SimpleKeychain Swift library for iOS.

Android

On Android, it is implemented using AndroidKeyStore, SharedPreferences, and EncryptedSharedPreferences for enhanced security. This approach uses modern encryption standards to ensure data security on devices with Android Marshmallow and above.

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 39.1%
  • Swift 21.8%
  • TypeScript 16.9%
  • SCSS 11.8%
  • Ruby 3.4%
  • HTML 3.0%
  • Other 4.0%