Totp util base on rfc6238 for two step authentication
npm install --save git+https://git@github.com/anzerr/totp.util.git
npm install --save @anzerr/totp.util
Both examples works with google authentication. Online example or a console version can be found in test/example.js
const {Totp} = require('totp.util');
let t = new Totp('12345678901234567890');
console.log(t.get());
let gen = Totp.generate();
console.log(gen.key.toString(), gen.get());