Enum CredentialType
Describes the class of one-time password algorithm to be used.
public enum CredentialType
Fields
Hotp = 16
HMAC-based One-time Password algorithm (HOTP) is generated based on HMAC algorithm using an authentication counter.
The algorithm is specified in RFC 4226.
None = 0
No type is specified.
Totp = 32
A time-based one-time password (TOTP) is generated based on HMAC algorithm using the current time.
It expires after 15, 30 or 60 seconds. The algorithm is specified in RFC 6238.