From c6dbf0450566c40efc4a26f4f0717452b6ef95cd Mon Sep 17 00:00:00 2001 From: Minteck Date: Wed, 10 Aug 2022 10:38:44 +0200 Subject: Initial commit --- node_modules/notp/examples/TOTP.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 node_modules/notp/examples/TOTP.js (limited to 'node_modules/notp/examples/TOTP.js') diff --git a/node_modules/notp/examples/TOTP.js b/node_modules/notp/examples/TOTP.js new file mode 100644 index 0000000..b81a21c --- /dev/null +++ b/node_modules/notp/examples/TOTP.js @@ -0,0 +1,15 @@ + +var notp = require('../index'), + t2 = require('thirty-two'), + K = '12345678901234567890', + b32 = t2.encode(K); + +console.log('Getting current counter value for K = 12345678901234567890'); +console.log('This has a base32 value of ' + b32); +console.log('The base32 value should be entered in the Google Authenticator App'); +console.log(''); +console.log('Open the following URL for a QR code. Google Authenticator can read this QR code using your phone\'s camera:'); +console.log('http://qrcode.kaywa.com/img.php?s=8&d=' + encodeURIComponent('otpauth://totp/notp@example.com?secret=' + b32)); + +console.log('The current TOTP value is ' + notp.totp.gen(K, {})); + -- cgit