UNPKG

otp-io

Version:

🕖 Typed library to work 2fa via Google Authenticator/Time-based TOTP/Hmac-based HOTP

15 lines (14 loc) • 231 B
/** * * * @export * @class SecretKey */ export class SecretKey { /** * Creates an instance of SecretKey. * @param {Uint8Array} bytes * @memberof SecretKey */ constructor(public readonly bytes: Uint8Array) {} }