使用speakeasy作为npm模块生成otp的Android应用程序中的移动验证?

时间:2015-12-27 19:45:26

标签: android node.js otp

大家好我正在使用speakeasy npm模块在一个时间范围内生成totp现在在下面是我的工作流程现在任何人都可以告诉我,我错过了什么。当用户注册时,我在请求中获取其移动号码,然后将其用作秘密,我生成我的totp,以便每个用户的totp可以是唯一的

var mobile_no = req.body.mobile_no;
speakeasy.totp({key: mobile_no, step: 60})

我发送给我的用户的手机号码然后将其发送到服务器以便现在在服务器上进行检查我将从totp模块再次检查

var mobile_no = req.body.mobile_no;
var sent_totp = req.body.totp;
if (sent_totp == speakeasy.totp({key: mobile_no, step: 60})) {
console.log('Registration successfull');
} else {
console.log('OTP does not match');
}

如果它匹配那么我做注册否则不是现在我正在做一切正确与否?请告诉我,我的方法有什么问题

1 个答案:

答案 0 :(得分:1)

 var code = speakeasy.totp({key: 'abc123'});
    users.get(data.phone_number, function (geterr, doc,         key) {
      if (geterr) {
        createUser(data.phone_number, code, socket);
      }
      else if (checkVerified(socket, doc.verified, data.phone_number) == false) {
        socket.emit('update', {message: "Your message goes in here"});
        socket.emit('code_generated'); //if code have been generated
      }
    });

//希望这会有所帮助