Skip to content

Latest commit

 

History

History
50 lines (36 loc) · 2.45 KB

DSInternals.Win32.WebAuthn.AuthenticatorAttestationResponse.md

File metadata and controls

50 lines (36 loc) · 2.45 KB

Class AuthenticatorAttestationResponse

Namespace: DSInternals.Win32.WebAuthn
Assembly: DSInternals.Win32.WebAuthn.dll

The AuthenticatorAttestationResponse class represents the authenticator's response to a client’s request for the creation of a new public key credential. It contains information about the new credential that can be used to identify it for later use, and metadata that can be used by the WebAuthn Relying Party to assess the characteristics of the credential during registration.

public class AuthenticatorAttestationResponse : AuthenticatorResponse

Inheritance

objectAuthenticatorResponseAuthenticatorAttestationResponse

Inherited Members

AuthenticatorResponse.ClientDataJson, object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()

Properties

AttestationObject

This attribute contains an attestation object, which is opaque to, and cryptographically protected against tampering by, the client. The attestation object contains both authenticator data and an attestation statement.

[JsonPropertyName("attestationObject")]
[JsonConverter(typeof(Base64UrlConverter))]
public byte[] AttestationObject { get; set; }

Property Value

byte[]