javascript - 服务器上的 Cordova 指纹认证

标签 javascript android cordova fingerprint

我正在尝试在我的 (cordova) 安卓应用程序中创建一种身份验证机制,允许我的用户使用密码和用户名登录,或者允许他们扫描手指以登录。

如何验证在客户端、服务器端注册的指纹?这甚至可能使用 Cordova 吗?我尝试将手指扫描的结果传输到我的服务器:这看起来像:

FingerprintAuth.isAvailable(function(result) {
  if (result.isAvailable) {
    if(result.hasEnrolledFingerprints){
      FingerprintAuth.show({
        clientId: client_id,
        clientSecret: client_secret
      }, function (result) {
        alert(JSON.stringify(result));

        $http.post('http://192.168.149.33:3000/authorize', result).then(
          function(response) {}
        );

        if (result.withFingerprint) {
          $scope.$parent.loggedIn = true;
          alert("Successfully authenticated using a fingerprint");
          $location.path( "/home" );
        } else if (result.withPassword) {
          alert("Authenticated with backup password");
        }
      }, function(error) {
        console.log(error); // "Fingerprint authentication not available"
      });
    } else {
      alert("Fingerprint auth available, but no fingerprint registered on the device");
    }
  }
}, function(message) {
  alert("Cannot detect fingerprint device : "+ message);
});

服务器端我收到以下数据(3 次单独扫描):

{ withFingerprint: 't8haYq36fmBPUEPbVjiWOaBLjMPBeUNP/BTOkoVtZ2ZiX20eBVzZAs3dn6PW/R4E\n' }
{ withFingerprint: 'rA9H+MIoQR3au9pqgLAi/EOCRA9b0Wx1AvzC/taGIUc8cCeDfzfiDZkxNy5U4joB\n' }
{ withFingerprint: 'MMyJm46O8MTxsa9aofKUS9fZW3OZVG7ojD+XspO71LWVy4TZh2FtvPtfjJFnj7Sy\n' }

图案似乎每次都不同,有没有办法可以将指纹链接到例如数据库中用户名下保存的图案?

最佳答案

简答

此 API 返回的字符串不是“指纹模式”。所以你将无法验证你的想法......

长答案

让我们从 source code 开始。看起来你正在使用的 API。

this file我们看到了这些方法:

public static void onAuthenticated(boolean withFingerprint) {
    JSONObject resultJson = new JSONObject();
    String errorMessage = "";
    boolean createdResultJson = false;
    try {

        if (withFingerprint) {
            // If the user has authenticated with fingerprint, verify that using cryptography and
            // then return the encrypted token
            byte[] encrypted = tryEncrypt();
            resultJson.put("withFingerprint", Base64.encodeToString(encrypted, 0 /* flags */));
        } else {
            // Authentication happened with backup password.
            resultJson.put("withPassword", true);

            // if failed to init cipher because of InvalidKeyException, create new key
            if (!initCipher()) {
                createKey();
            }
        }
        createdResultJson = true;

// ...

/**
 * Tries to encrypt some data with the generated key in {@link #createKey} which is
 * only works if the user has just authenticated via fingerprint.
 */
private static byte[] tryEncrypt() throws BadPaddingException, IllegalBlockSizeException {
    return mCipher.doFinal(mClientSecret.getBytes());
}

查看 "withFingerprint" 中的内容。它是加密客户端密码的 Base64 编码。从技术上讲,这您的身份验证。您将使用此 token 对请求进行身份验证,并且您的服务器将解密并验证客户端密码。

总结

指纹增加了安全级别,但它不是唯一的安全手段。需要事先与设备和服务器建立关系。

我发现这张图有助于理解安卓指纹认证的 Intent (引用:http://android-developers.blogspot.com/2015/10/new-in-android-samples-authenticating.html)

enter image description here

关于javascript - 服务器上的 Cordova 指纹认证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39723100/

相关文章:

javascript - 将元素定位在 jquery 中非相关元素的右下角

javascript - 如何仅获取一次变量中的对象总数?

javascript - 服务中的Android webview?

android - phonegap 运行 android 执行错误 "adb devices": ** daemon still not running node_modules\q\q. js:126 throw e;

android - Gradle 同步失败 : Failed to update Android plugin to version '2.0.0'

javascript - 从 Angular JS 应用程序打开谷歌地图应用程序

cordova - npm run build = 没有图像

javascript - Heroku ExecJS::ProgramError: Unexpected token: error rails

android - 升级 flutter 版本 2.0 时出错

android - Cordova SQLite,从服务器推送值并插入 SQLite 数据库