WebAuthnAssertionResponse

data class WebAuthnAssertionResponse(val clientDataJSON: String, val authenticatorData: String, val signature: String, val userHandle: String? = null)

Represents the response from a WebAuthn assertion ceremony.

This data class encapsulates the output of the platform's WebAuthn API after a successful assertion (authentication) ceremony. The values are base64url-encoded as specified by the WebAuthn standard.

Parameters

clientDataJSON

The base64url-encoded client data JSON from the authenticator response.

authenticatorData

The base64url-encoded authenticator data.

signature

The base64url-encoded signature.

userHandle

The base64url-encoded user handle, if available. This is optional and may not be present for all authenticators.

Constructors

Link copied to clipboard
constructor(clientDataJSON: String, authenticatorData: String, signature: String, userHandle: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard