Skip to content

Latest commit

 

History

History
 
 

Time-based-One-Time-Password

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Desc

A time-based one-time password algorithm(TOTP), implemented entirely 100% in Javascript.

This script complies with RFC6238 specification and can be run in Surge, QuantumultX, Loon, Shadowrocket.

Usage

const key = 'YOURCLIENTTOKEN'; //TOTP key
const totp = TOTP(key); //Return a six-digit one-time password.

console.log(totp); //Print log

Acknowledgements

This script is adapted from https://jsfiddle.net/russau/rbyjk774 and uses Brian Turek's jsSHA.