AES
256
bitsConfigure → Cordova Plugin Settings
.SecureStorage
plugin and click Enable
button.key
and value
. The boolean callback will notify whether the data is successfully saved (True
) or failed to save (false
).plugins.secureStorage.setItem(key, value, function(result) {
// result: true=success, false=error
});
plugins.secureStorage.getItem(key, function(value) {
// value: null = no such a value
});
True
) or failed (false
).plugins.secureStorage.removeItem(key, function(result) {
// result: true=success, false=error
});
True
) or failed (false
).plugins.secureStorage.clear(function(result) {
// result: true=success, false=error
});
individual
mode by adding the following settings to config.xml.Static
to Individual
while using version 2.x, data can not be acquired.