diff --git a/lib/totp.js b/lib/totp.js index 07b44a2..4930089 100644 --- a/lib/totp.js +++ b/lib/totp.js @@ -25,7 +25,7 @@ function getPubKey() { return result.data; } -function getOtp() { +function getOtp(pubkey) { var rpc = JsonRpc2.create("https://public-api.catswords.net"); var result = rpc.invoke("relay_invoke_method", { "callback": "load_script", @@ -33,7 +33,7 @@ function getOtp() { "https://raw.githubusercontent.com/dimamedia/PHP-Simple-TOTP-and-PubKey/refs/heads/master/class.tfa.php" ], "args": [ - "$tfa = new tfa(); return $tfa->getOtp()" + "$tfa = new tfa(); return $tfa->getOtp('" + pubkey + "')" ] }, ""); @@ -43,7 +43,7 @@ function getOtp() { exports.getPubKey = getPubKey; exports.getOtp = getOtp; -exports.VERSIONINFO = "TOTP library (totp.js) version 0.1.1"; +exports.VERSIONINFO = "TOTP library (totp.js) version 0.1.2"; exports.AUTHOR = "abuse@catswords.net"; exports.global = global; exports.require = global.require;