You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Make UafVersion a readonly struct
* Fix UndesiredMetadataStatusFido2VerificationException class name
* Make RgbPaletteEntry a readonly struct
* Make AuthenticationExtensionsDevicePublicKeyOutputs immutable
* Make PublicKeyCredentialDescriptor immutable
* Fix typo
* Remove unused namespace
* Use new IBufferWriter.WriteGuidBigEndian helper
* Add AsnHelper.GetAaguidBlob
* Fix tests
/// This member contains the credential ID of the public key credential the caller is referring to.
30
36
/// </summary>
31
37
[JsonConverter(typeof(Base64UrlConverter))]
32
38
[JsonPropertyName("id")]
33
-
publicbyte[]Id{get;set;}
34
-
35
-
#nullable enable
39
+
publicbyte[]Id{get;}
36
40
37
41
/// <summary>
38
42
/// This OPTIONAL member contains a hint as to how the client might communicate with the managing authenticator of the public key credential the caller is referring to.
publicUndesiredMetdatataStatusFido2VerificationException(StatusReportstatusReport):base($"Authenticator found with undesirable status. Was {statusReport.Status}")
12
+
publicUndesiredMetadataStatusFido2VerificationException(StatusReportstatusReport):base($"Authenticator found with undesirable status. Was {statusReport.Status}")
Copy file name to clipboardExpand all lines: Src/Fido2/AuthenticatorAttestationResponse.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -176,11 +176,11 @@ public async Task<AttestationVerificationSuccess> VerifyAsync(
176
176
// If ECDAA was used, verify that the identifier of the ECDAA-Issuer public key used is included in the set of acceptable trust anchors obtained in step 15.
177
177
// Otherwise, use the X.509 certificates returned by the verification procedure to verify that the attestation public key correctly chains up to an acceptable root certificate.
178
178
179
-
// Check status resports for authenticator with undesirable status
179
+
// Check status reports for authenticator with undesirable status
0 commit comments