├── .eslintrc.js ├── .gitignore ├── .npmignore ├── CHANGELOG ├── LICENSE ├── README.md ├── package.json ├── plugin.xml ├── src ├── android │ ├── AES.java │ ├── AbstractRSA.java │ ├── RSA.java │ ├── RSAFactory.java │ ├── RSALegacy.java │ ├── SecureStorage.java │ └── SharedPreferencesHandler.java ├── ios │ ├── SAMKeychain │ │ ├── LICENSE │ │ ├── SAMKeychain.bundle │ │ │ └── en.lproj │ │ │ │ └── SAMKeychain.strings │ │ ├── SAMKeychain.h │ │ ├── SAMKeychain.m │ │ ├── SAMKeychainQuery.h │ │ └── SAMKeychainQuery.m │ ├── SecureStorage.h │ └── SecureStorage.m └── windows │ └── SecureStorage.js ├── tests ├── package.json ├── plugin.xml └── tests.js └── www └── securestorage.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | tests/ 2 | .* 3 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/AES.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/android/AES.java -------------------------------------------------------------------------------- /src/android/AbstractRSA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/android/AbstractRSA.java -------------------------------------------------------------------------------- /src/android/RSA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/android/RSA.java -------------------------------------------------------------------------------- /src/android/RSAFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/android/RSAFactory.java -------------------------------------------------------------------------------- /src/android/RSALegacy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/android/RSALegacy.java -------------------------------------------------------------------------------- /src/android/SecureStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/android/SecureStorage.java -------------------------------------------------------------------------------- /src/android/SharedPreferencesHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/android/SharedPreferencesHandler.java -------------------------------------------------------------------------------- /src/ios/SAMKeychain/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/ios/SAMKeychain/LICENSE -------------------------------------------------------------------------------- /src/ios/SAMKeychain/SAMKeychain.bundle/en.lproj/SAMKeychain.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/ios/SAMKeychain/SAMKeychain.bundle/en.lproj/SAMKeychain.strings -------------------------------------------------------------------------------- /src/ios/SAMKeychain/SAMKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/ios/SAMKeychain/SAMKeychain.h -------------------------------------------------------------------------------- /src/ios/SAMKeychain/SAMKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/ios/SAMKeychain/SAMKeychain.m -------------------------------------------------------------------------------- /src/ios/SAMKeychain/SAMKeychainQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/ios/SAMKeychain/SAMKeychainQuery.h -------------------------------------------------------------------------------- /src/ios/SAMKeychain/SAMKeychainQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/ios/SAMKeychain/SAMKeychainQuery.m -------------------------------------------------------------------------------- /src/ios/SecureStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/ios/SecureStorage.h -------------------------------------------------------------------------------- /src/ios/SecureStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/ios/SecureStorage.m -------------------------------------------------------------------------------- /src/windows/SecureStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/src/windows/SecureStorage.js -------------------------------------------------------------------------------- /tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/tests/package.json -------------------------------------------------------------------------------- /tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/tests/plugin.xml -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/tests/tests.js -------------------------------------------------------------------------------- /www/securestorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mibrito707/cordova-plugin-secure-storage-echo/HEAD/www/securestorage.js --------------------------------------------------------------------------------