class U2F::Registration

A representation of a registered U2F device

Attributes

certificate[RW]
counter[RW]
key_handle[RW]
public_key[RW]

Public Class Methods

new(key_handle, public_key, certificate) click to toggle source
# File lib/u2f/registration.rb, line 6
def initialize(key_handle, public_key, certificate)
  @key_handle = key_handle
  @public_key = public_key
  @certificate = certificate
end