File tree Expand file tree Collapse file tree 5 files changed +13
-7
lines changed
SSLLabsApiWrapper/Models/Response Expand file tree Collapse file tree 5 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ public class Cert
17
17
public List < string > ocspURIs { get ; set ; }
18
18
public int revocationStatus { get ; set ; }
19
19
public int sgc { get ; set ; }
20
+ public string validationType { get ; set ; }
20
21
public int issues { get ; set ; }
21
22
}
22
23
}
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ public class Details
18
18
public int sessionResumption { get ; set ; }
19
19
public int compressionMethods { get ; set ; }
20
20
public bool supportsNpn { get ; set ; }
21
+ public string npnProtocols { get ; set ; }
21
22
public int sessionTickets { get ; set ; }
22
23
public bool ocspStapling { get ; set ; }
23
24
public bool sniRequired { get ; set ; }
@@ -30,6 +31,7 @@ public class Details
30
31
public bool heartbeat { get ; set ; }
31
32
public int openSslCcs { get ; set ; }
32
33
public int poodleTls { get ; set ; }
34
+ public bool fallbackScsv { get ; set ; }
33
35
34
36
public Details ( )
35
37
{
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ public class Key
4
4
{
5
5
public int size { get ; set ; }
6
6
public string alg { get ; set ; }
7
- public bool debianFlaw { get ; set ; }
7
+ public bool debianFlaw { get ; set ; } //**Deprecated - To be removed in new release
8
8
public int strength { get ; set ; }
9
9
}
10
10
}
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ public class List
7
7
public int cipherStrength { get ; set ; }
8
8
public int ecdhBits { get ; set ; }
9
9
public int ecdhStrength { get ; set ; }
10
- public int ? dhStrength { get ; set ; }
11
- public int ? dhP { get ; set ; }
12
- public int ? dhG { get ; set ; }
13
- public int ? dhYs { get ; set ; }
10
+ public int ? dhStrength { get ; set ; } //**Deprecated - To be removed in new release
11
+ public int ? dhP { get ; set ; } //**Deprecated - To be removed in new release
12
+ public int ? dhG { get ; set ; } //**Deprecated - To be removed in new release
13
+ public int ? dhYs { get ; set ; } //**Deprecated - To be removed in new release
14
14
}
15
15
}
Original file line number Diff line number Diff line change 1
- namespace SSLLabsApiWrapper . Models . Response
1
+ using System . Collections . Generic ;
2
+
3
+ namespace SSLLabsApiWrapper . Models . Response
2
4
{
3
5
public class Info : BaseModel
4
6
{
5
7
public string engineVersion { get ; set ; }
6
8
public string criteriaVersion { get ; set ; }
7
9
public int clientMaxAssessments { get ; set ; }
8
- public string notice { get ; set ; }
10
+ public int currentAssessments { get ; set ; }
11
+ public List < string > messages { get ; set ; }
9
12
public bool Online { get ; set ; }
10
13
11
14
public Info ( )
You can’t perform that action at this time.
0 commit comments