Method: WebAuthn::AuthenticatorAssertionResponse#initialize

Defined in:
lib/webauthn/authenticator_assertion_response.rb

#initialize(authenticator_data:, signature:, user_handle: nil, **options) ⇒ AuthenticatorAssertionResponse

Returns a new instance of AuthenticatorAssertionResponse.



32
33
34
35
36
37
38
# File 'lib/webauthn/authenticator_assertion_response.rb', line 32

def initialize(authenticator_data:, signature:, user_handle: nil, **options)
  super(**options)

  @authenticator_data_bytes = authenticator_data
  @signature = signature
  @user_handle = user_handle
end