OTP is very common in today’s MFA implementation.

HOTP

HOTP stands for HMAC-based One-time Password algorithm. It computes the value with the following inputs:

  • A cryptographic hash method, H (default is SHA-1)

  • A secret key, K, which is an arbitrary byte string, and must remain private

  • A counter, C, which counts the number of iterations

  • A HOTP value length, d (6–10, default is 6, and 6–8 is recommended)

TOTP

TOTP stands for Time-based One-time Password algorithm (TOTP). It is an extension of HOTP that generates a one-time password (OTP) by instead taking uniqueness from the current time.

More often than not, time is downsampled into larger durations (e.g., 30 seconds) to allow for validity between the parties.

To establish TOTP authentication, the authenticatee and authenticator must pre-establish both the HOTP parameters and the following TOTP parameters:

  • T0, the Unix time from which to start counting time steps (default is 0)

  • TX, an interval which will be used to calculate the value of the counter CT (default is 30 seconds)