diff --git a/Demo/Pages/_options.cshtml b/Demo/Pages/_options.cshtml index b8a8d1ea..138666af 100644 --- a/Demo/Pages/_options.cshtml +++ b/Demo/Pages/_options.cshtml @@ -15,6 +15,7 @@ + diff --git a/Src/Fido2.Models/Objects/AttestationConveyancePreference.cs b/Src/Fido2.Models/Objects/AttestationConveyancePreference.cs index 2fccebe0..de7427fe 100644 --- a/Src/Fido2.Models/Objects/AttestationConveyancePreference.cs +++ b/Src/Fido2.Models/Objects/AttestationConveyancePreference.cs @@ -27,5 +27,11 @@ public enum AttestationConveyancePreference /// This value indicates that the Relying Party wants to receive the attestation statement as generated by the authenticator. /// [EnumMember(Value = "direct")] - Direct + Direct, + + /// + /// This value indicates that the Relying Party wants to receive an attestation statement that may include uniquely identifying information. + /// + [EnumMember(Value ="enterprise")] + Enterprise }