Class: ROTP::HOTP

Inherits:
OTP
  • Object
show all
Defined in:
lib/rotp/hotp.rb

Instance Attribute Summary

Attributes inherited from OTP

#digest, #digits, #secret

Instance Method Summary collapse

Methods inherited from OTP

#generate_otp, #initialize

Constructor Details

This class inherits a constructor from ROTP::OTP

Instance Method Details

#at(count) ⇒ Object

Generates the OTP for the given count

Parameters:

  • count (Integer)

    counter



6
7
8
# File 'lib/rotp/hotp.rb', line 6

def at(count)
  generate_otp(count)
end

#provisioning_uri(name, initial_count = 0) ⇒ String

Returns the provisioning URI for the OTP This can then be encoded in a QR Code and used to provision the Google Authenticator app

Parameters:

  • name (String)

    of the account

  • initial_count (Integer) (defaults to: 0)

    starting counter value, defaults to 0

Returns:

  • (String)

    provisioning uri



23
24
25
# File 'lib/rotp/hotp.rb', line 23

def provisioning_uri(name, initial_count=0)
  "otpauth://hotp/#{URI.encode(name)}?secret=#{secret}&counter=#{initial_count}"
end

#verify(otp, counter) ⇒ Object

Verifies the OTP passed in against the current time OTP

Parameters:

  • otp (String/Integer)

    the OTP to check against

  • counter (Integer)

    the counter of the OTP



13
14
15
# File 'lib/rotp/hotp.rb', line 13

def verify(otp, counter)
  super(otp, self.at(counter))
end