class ROTP::TOTP

def initialize(s, options = {})

Options Hash: (**options)
  • interval (Integer) -- the time interval in seconds for OTP
def initialize(s, options = {})
  @interval = options[:interval] || DEFAULT_INTERVAL
  @issuer = options[:issuer]
  super
end