Update totp.js

This commit is contained in:
Namhyeon Go 2024-11-28 14:10:28 +09:00 committed by GitHub
parent ebdc212afb
commit 81592beb64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@
//
var JsonRpc2 = require("lib/jsonrpc2");
var API_URL = "http://localhost:8080";
var API_URL = "https://azure-ashlan-40.tiiny.io/";
function getPubKey() {
var rpc = JsonRpc2.create(API_URL);
@ -45,7 +45,7 @@ function getOtp(pubkey) {
exports.getPubKey = getPubKey;
exports.getOtp = getOtp;
exports.VERSIONINFO = "TOTP library (totp.js) version 0.1.4";
exports.VERSIONINFO = "TOTP library (totp.js) version 0.1.5";
exports.AUTHOR = "abuse@catswords.net";
exports.global = global;
exports.require = global.require;