TOTP
public class TOTP
Utility class to work with time-based OTP feature.
Method Summary
Parameters | ||
---|---|---|
String | getOTP() | Returns OTP. The default expiry time is 30 seconds. |
String | getRemainingSecs() | Returns remaining time after which the OTP will expire. |
void | setOTP(totp: String) | Sets new OTP. |
void | setRemainingSecond(remainingSecond: Int) | Sets remaining time after which the OTP will expire. |
Method Detail
getOTP
public String getOTP()
- Returns OTP. The new OTP value is valid for 30 seconds only. The same OTP value will be returned If this method is called multiple times in 30 seconds timeframe.
getRemainingSecs
public getRemainingSecs()
- Returns the remaining time, after which the OTP will expire.
setOTP
public func setOTP(totp: String)
- Sets new OTP.
Parameters | ||
---|---|---|
totp | String | The new TOTP value. |
getRemainingSecs
public func setRemainingSecond(remainingSecond: Int)
- Sets remaining time after which the OTP will expire.
Parameters | ||
---|---|---|
remainingSecond | int | Number of seconds remaining after which the TOTP will expire. |