UNPKG

@akanass/rx-otp

Version:

HMAC-based (HOTP) and Time-based (TOTP) One-Time Password manager. Works with Google Authenticator for Two-Factor Authentication.

10 lines (9 loc) 577 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.U2F = exports.TOTP = exports.HOTP = void 0; var hotp_1 = require("./lib/components/hotp"); Object.defineProperty(exports, "HOTP", { enumerable: true, get: function () { return hotp_1.HOTP; } }); var totp_1 = require("./lib/components/totp"); Object.defineProperty(exports, "TOTP", { enumerable: true, get: function () { return totp_1.TOTP; } }); var u2f_1 = require("./lib/components/u2f"); Object.defineProperty(exports, "U2F", { enumerable: true, get: function () { return u2f_1.U2F; } });