AuthenticatorSignAssertion

public struct AuthenticatorSignAssertion : Codable

An AuthenticatorSignAssertion contains the authenticator’s response to a AuthenticationRequest message.

  • The name of the Assertion Scheme used to encode the assertion.

    Declaration

    Swift

    public let assertionScheme: String
  • The assertion object containing the assertion scheme specific KeyRegistrationData (KRD) object which in turn contains the newly generated UAuth.pub and is signed by the Attestation Private Key.

    Declaration

    Swift

    public let assertion: String
  • The list of extensions prepared by the authenticator.

    Declaration

    Swift

    public let extensions: [Extension]?