PasswordAlgorithm Property
The algorithm used to create or validate the password.
Syntax
public int getPasswordAlgorithm(); public void setPasswordAlgorithm(int passwordAlgorithm);
Enumerated values: public final static int paTOTP = 0; public final static int paHOTP = 1;
Remarks
This property specifies whether to use the HMAC-Based or Time-Based One Time Password algorithm. Possible values are:
0 (paTOTP - default) | Time-Based One Time Password Algorithm. |
1 (paHOTP) | HMAC-Based One Time Password Algorithm. |
Default Value
0