RealmOtpPolicy

data class RealmOtpPolicy(val algorithm: String? = null, val digits: Int? = null, val initialCounter: Int? = null, val lookAheadWindow: Int? = null, val period: Int? = null, val type: String? = null)

Constructors

Link copied to clipboard
constructor(algorithm: String? = null, digits: Int? = null, initialCounter: Int? = null, lookAheadWindow: Int? = null, period: Int? = null, type: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val algorithm: String? = null

What hashing algorithm should be used to generate the OTP.

Link copied to clipboard
val digits: Int? = null
Link copied to clipboard
val initialCounter: Int? = null
Link copied to clipboard
val lookAheadWindow: Int? = null
Link copied to clipboard
val period: Int? = null
Link copied to clipboard
val type: String? = null

OTP Type, totp for Time-Based One Time Password or hotp for counter base one time password