UNPKG

otp-io

Version:

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

16 lines (15 loc) • 265 B
/** * * * @export * @class SecretKey */ export declare class SecretKey { readonly bytes: Uint8Array; /** * Creates an instance of SecretKey. * @param {Uint8Array} bytes * @memberof SecretKey */ constructor(bytes: Uint8Array); }