我正在尝试使用https://github.com/Crypho/cordova-plugin-secure-storage
要使用,必须使用PIN或密码锁定设备。如何检查设备是否有针脚?
答案 0 :(得分:1)
使用Secure Storage init的错误回调功能。如果您到达错误回调,设备可能没有使用引脚保护:
ss = new cordova.plugins.SecureStorage(
function () {
console.log('OK');
},
function () {
console.log('NOT SECURED!');
},
'my_app');
您甚至可以让用户直接保护设备:
ss.secureDevice(
function () {
console.log('OK');
},
function () {
console.log('NOT OK');
}
);