Class AuthenticatorAssertionResponse

Definition

Namespace:
Tizen.Security.WebAuthn
Assembly:
Tizen.Security.WebAuthn.dll
C#
Copy
public class AuthenticatorAssertionResponse
Inheritance
object
AuthenticatorAssertionResponse
Remarks

Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#authenticatorassertionresponse

Properties

View Source

AttestationObject

Gets the attestation object.

Declaration
C#
Copy
public byte[] AttestationObject { get; init; }
Property Value
Type Description
byte[]

An OPTIONAL property that contains an attestation object, if the authenticator supports attestation in assertions.

Remarks

Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#authenticatorassertionresponse

View Source

AuthenticatorData

Gets the authenticator data contained within the Attestation Object.

Declaration
C#
Copy
public byte[] AuthenticatorData { get; init; }
Property Value
Type Description
byte[]

Authenticator data contained within the Attestation Object. For more information, refer to https://www.w3.org/TR/webauthn-3/#sctn-authenticator-data

Remarks

Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#authenticatorassertionresponse

View Source

ClientDataJson

Gets the serialized client data json.

Declaration
C#
Copy
public byte[] ClientDataJson { get; init; }
Property Value
Type Description
byte[]

A JSON-compatible serialization of client data.

Remarks

Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#authenticatorassertionresponse

View Source

Signature

Gets the signature returned from the authenticator.

Declaration
C#
Copy
public byte[] Signature { get; init; }
Property Value
Type Description
byte[]

The signature returned from the authenticator. For more information, refer to https://www.w3.org/TR/webauthn-3/#sctn-op-get-assertion

Remarks

Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#authenticatorassertionresponse

View Source

UserHandle

Gets the user handle returned from the authenticator.

Declaration
C#
Copy
public byte[] UserHandle { get; init; }
Property Value
Type Description
byte[]

The user handle returned from the authenticator, or null if the authenticator did not return a user handle.

Remarks

Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#authenticatorassertionresponse