mirror of
https://github.com/gnh1201/welsonjs.git
synced 2024-11-26 07:21:43 +00:00
Update totp.js
This commit is contained in:
parent
400e904aa9
commit
69d7d3c632
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user