diff options
author | Minteck <contact@minteck.org> | 2022-08-10 10:38:44 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-08-10 10:38:44 +0200 |
commit | c6dbf0450566c40efc4a26f4f0717452b6ef95cd (patch) | |
tree | b4be2d508223820d0a77d5a3e35e82684da3b6ec /node_modules/notp/examples | |
download | hornchat-mane.tar.gz hornchat-mane.tar.bz2 hornchat-mane.zip |
Diffstat (limited to 'node_modules/notp/examples')
-rw-r--r-- | node_modules/notp/examples/TOTP-verify.js | 33 | ||||
-rw-r--r-- | node_modules/notp/examples/TOTP.js | 15 |
2 files changed, 48 insertions, 0 deletions
diff --git a/node_modules/notp/examples/TOTP-verify.js b/node_modules/notp/examples/TOTP-verify.js new file mode 100644 index 0000000..78dedd2 --- /dev/null +++ b/node_modules/notp/examples/TOTP-verify.js @@ -0,0 +1,33 @@ + +var notp = require('../index'), + t2 = require('thirty-two'), + K = '12345678901234567890', + b32 = t2.encode(K); + +console.log('Click on this link to gennerate a QR code, and use Google Authenticator on your phone to read it:'); +console.log('http://qrcode.kaywa.com/img.php?s=8&d=' + encodeURIComponent('otpauth://totp/notp@example.com?secret=' + b32)); +verify(); + +function verify() { + ask('Enter a code to verify', function(code) { + if(notp.totp.verify(code, K, {})) { + console.log('Success!!!'); + } + console.log(notp.totp.verify(code, K, {})); + verify(); + }); +} + + + +function ask(question, callback) { + var stdin = process.stdin, stdout = process.stdout; + + stdin.resume(); + stdout.write(question + ": "); + + stdin.once('data', function(data) { + data = data.toString().trim(); + callback(data); + }); +} 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, {})); + |