UNPKG

2fa-hotp-totp

Version:
7 lines (6 loc) 188 B
/** * Base32 encoder without padding, thanks @LinusU * @param secret text to be encoded * @return base32 encoded secret */ export declare const base32:(secret:string|Buffer)=>string;