catacombs
v0.1.5
Published
A Secure way of persisting secrets on android
Downloads
3
Readme
catacombs-vault
A Secure way to persist any secrets in your application.
This package is an implementation of the EncryptedSharedPreferences
class on Android Link to the class documentation
Installation
npm install catacombs-vault
Usage
import CatacombsVault from 'catacombs-vault';
// ...
await CatacombsVault.init(NAME_OF_VAULT);
await CatacombsVault.set('key', 'value');
await CatacombsVault.get('key'); // 'value'