UNPKG

otpauth

Version:

One Time Password (HOTP/TOTP) library for Node.js, Deno and browsers

13 lines (11 loc) 370 B
import { HOTP } from './hotp'; import { TOTP } from './totp'; import { URI } from './uri'; import { Secret } from './secret'; import { version } from './version'; /** * One Time Password (HOTP/TOTP) library for Node.js, Deno and browsers. * @module OTPAuth * @author Héctor Molinero Fernández <hector@molinero.dev> */ export { HOTP, TOTP, URI, Secret, version };