node-tfa
TypeScript icon, indicating that this package has built-in type declarations

1.0.11 • Public • Published

node-tfa

Installation

npm i node-tfa

Usage

Hotp

import Secret, { hotpGenerate, hotpVerify } from 'node-tfa';

const secret = new Secret({ label: 'USER_NAME', issuer: 'APP_NAME' })

const token = hotpGenerate({ secret: c.base32, counter: 1 })

hotpVerify({ secret: secret.base32, counter: 1, token })

Totp

import Secret, { totpGenerate, totpVerify } from 'node-tfa';

const secret = new Secret({ label: 'USER_NAME', issuer: 'APP_NAME' })

const token = totpGenerate({ secret: secret.base32 })

totpVerify({ secret: secret.base32, token })

Google Authenticator

import Secret, { totpVerify } from 'node-tfa';

const secret = new Secret({ label: 'USER_NAME', issuer: 'APP_NAME', qr_code: true, type: 'totp' })

secret.qr_code

totpVerify({ secret: secret.base32, token: 'TOKEN_FROM_GOOGLE_AUTHENTICATOR' })

Readme

Keywords

Package Sidebar

Install

npm i node-tfa

Weekly Downloads

17

Version

1.0.11

License

MIT

Unpacked Size

19.2 kB

Total Files

9

Last publish

Collaborators

  • t.kosminov