Namespace: DSInternals.Win32.WebAuthn.FIDO
Assembly: DSInternals.Win32.WebAuthn.dll
Contains information from the authenticator about the processing of a credential creation or authentication request.
public class AuthenticatorData
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()
Parses the binary form of the authenticator data.
public AuthenticatorData(byte[] authData)
authData
byte[]
Attested credential data is a variable-length byte array added to the authenticator data when generating an attestation object for a given credential.
public AttestedCredentialData AttestedCredentialData { get; }
Optional extensions to suit particular use cases.
public CBORObject Extensions { get; }
CBORObject
Flags contains information from the authenticator about the authentication and whether or not certain data is present in the authenticator data.
public AuthenticatorFlags Flags { get; }
SHA-256 hash of the RP ID the credential is scoped to.
public byte[] RelyingPartyIdHash { get; }
byte[]
Signature counter, 32-bit unsigned big-endian integer.
public uint SignatureCount { get; }