Secure Storage
This plugin gets, sets and removes key,value pairs from a device's secure storage.
Requires Cordova plugin: cordova-plugin-secure-storage
. For more info, please see the
Cordova Secure Storage docs.
The browser platform is supported as a mock only. Key/values are stored unencrypted in localStorage.
Stuck on a Cordova issue?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
Supported Platforms
- Android
- Browser
- iOS
- Windows
Usage
React
Angular
import { SecureStorage, SecureStorageObject } from '@ionic-native/secure-storage/ngx';
constructor(private secureStorage: SecureStorage) { }
...
this.secureStorage.create('my_store_name')
.then((storage: SecureStorageObject) => {
storage.get('key')
.then(
data => console.log(data),
error => console.log(error)
);
storage.set('key', 'value')
.then(
data => console.log(data),
error => console.log(error)
);
storage.remove('key')
.then(
data => console.log(data),
error => console.log(error)
);
});