Class AuthenticatorAssertionResponse
Definition
- Assembly:
- Tizen.Security.WebAuthn.dll
The authenticator's response of GetAssertion(ClientData, PubkeyCredRequestOptions, GetAssertionCallbacks).
public class AuthenticatorAssertionResponse
- Inheritance
-
objectAuthenticatorAssertionResponse
Remarks
Refer to the following W3C specification for more information. https://www.w3.org/TR/webauthn-3/#authenticatorassertionresponse
Properties
View SourceAttestationObject
Gets the attestation object.
Declaration
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
AuthenticatorData
Gets the authenticator data contained within the Attestation Object.
Declaration
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
ClientDataJson
Gets the serialized client data json.
Declaration
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
Signature
Gets the signature returned from the authenticator.
Declaration
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
UserHandle
Gets the user handle returned from the authenticator.
Declaration
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