- (totp-generate SECRET #!key (time (current-seconds)) (period 30) (t0 0) (digits 6) (algorithm 'sha1)) -> stringprocedure
Computes the TOTP value for SECRET at the given Unix time (in seconds), using a time step of period seconds since epoch offset t0. Equivalent to calling hotp-generate with the counter (quotient (- time t0) period).