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
Copy file name to clipboardExpand all lines: Src/Fido2.Models/Fido2Configuration.cs
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,16 @@ namespace Fido2NetLib
6
6
{
7
7
publicclassFido2Configuration
8
8
{
9
+
privateHashSet<string>_origins;
10
+
privateHashSet<string>_fullyQualifiedOrigins;
11
+
12
+
/// <summary>
13
+
/// Create the configuration for Fido2.
14
+
/// </summary>
15
+
publicFido2Configuration()
16
+
{
17
+
}
18
+
9
19
/// <summary>
10
20
/// This member specifies a time, in milliseconds, that the caller is willing to wait for the call to complete.
11
21
/// This is treated as a hint, and MAY be overridden by the client.
@@ -28,12 +38,12 @@ public class Fido2Configuration
28
38
publicstringServerDomain{get;set;}
29
39
30
40
/// <summary>
31
-
/// A humanfriendly name of the RP
41
+
/// A human-friendly name of the RP.
32
42
/// </summary>
33
43
publicstringServerName{get;set;}
34
44
35
45
/// <summary>
36
-
/// A serialized URL which resolves to an image associated with the entity.For example, this could be a user’s avatar or a Relying Party's logo. This URL MUST be an a priori authenticated URL. Authenticators MUST accept and store a 128-byte minimum length for an icon member’s value. Authenticators MAY ignore an icon member’s value if its length is greater than 128 bytes. The URL’s scheme MAY be "data" to avoid fetches of the URL, at the cost of needing more storage.
46
+
/// A serialized URL which resolves to an image associated with the entity.For example, this could be a user’s avatar or a Relying Party's logo. This URL MUST be an a priori authenticated URL. Authenticators MUST accept and store a 128-byte minimum length for an icon member’s value. Authenticators MAY ignore an icon member’s value if its length is greater than 128 bytes. The URL’s scheme MAY be "data" to avoid fetches of the URL, at the cost of needing more storage.
37
47
/// </summary>
38
48
publicstringServerIcon{get;set;}
39
49
@@ -88,7 +98,7 @@ public HashSet<string> FullyQualifiedOrigins
88
98
}
89
99
90
100
/// <summary>
91
-
/// MDSCacheDirPath
101
+
/// Metadata service cache directory path.
92
102
/// </summary>
93
103
publicstringMDSCacheDirPath{get;set;}
94
104
@@ -103,15 +113,5 @@ public HashSet<string> FullyQualifiedOrigins
0 commit comments