Skip to content

Commit 2909c15

Browse files
authored
Added enterprise attestation (#410)
1 parent e571db5 commit 2909c15

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

Demo/Pages/_options.cshtml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<option selected value="none">None</option>
1616
<option value="indirect">Indirect</option>
1717
<option value="direct">Direct</option>
18+
<option value="enterprise">Enterprise</option>
1819
</select>
1920
</div>
2021
</div>

Src/Fido2.Models/Objects/AttestationConveyancePreference.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,11 @@ public enum AttestationConveyancePreference
2727
/// This value indicates that the Relying Party wants to receive the attestation statement as generated by the authenticator.
2828
/// </summary>
2929
[EnumMember(Value = "direct")]
30-
Direct
30+
Direct,
31+
32+
/// <summary>
33+
/// This value indicates that the Relying Party wants to receive an attestation statement that may include uniquely identifying information.
34+
/// </summary>
35+
[EnumMember(Value ="enterprise")]
36+
Enterprise
3137
}

0 commit comments

Comments
 (0)