UNPKG

xotp

Version:

One-Time Password (HOTP/TOTP) library for Node.js, Deno and Bun, with support for Google Authenticator.

10 lines (9 loc) 199 B
import { Algorithm } from "@src/types"; export type HOTPOptions = { algorithm: Algorithm; counter: number; digits: number; window: number; issuer: string; account: string; };