|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | +using System.Linq; |
| 4 | +using System.Text; |
| 5 | +using System.Threading.Tasks; |
| 6 | + |
| 7 | +namespace SSLLWrapper.Models.Response.EndpointSubModels |
| 8 | +{ |
| 9 | + public class Details |
| 10 | + { |
| 11 | + public long hostStartTime { get; set; } |
| 12 | + public Key key { get; set; } |
| 13 | + public Cert cert { get; set; } |
| 14 | + public Chain chain { get; set; } |
| 15 | + public List<Protocol> protocols { get; set; } |
| 16 | + public Suites suites { get; set; } |
| 17 | + public string serverSignature { get; set; } |
| 18 | + public bool prefixDelegation { get; set; } |
| 19 | + public bool nonPrefixDelegation { get; set; } |
| 20 | + public bool vulnBeast { get; set; } |
| 21 | + public int renegSupport { get; set; } |
| 22 | + public int sessionResumption { get; set; } |
| 23 | + public int compressionMethods { get; set; } |
| 24 | + public bool supportsNpn { get; set; } |
| 25 | + public int sessionTickets { get; set; } |
| 26 | + public bool ocspStapling { get; set; } |
| 27 | + public bool sniRequired { get; set; } |
| 28 | + public int httpStatusCode { get; set; } |
| 29 | + public bool supportsRc4 { get; set; } |
| 30 | + public int forwardSecrecy { get; set; } |
| 31 | + public bool rc4WithModern { get; set; } |
| 32 | + public Sims sims { get; set; } |
| 33 | + public bool heartbleed { get; set; } |
| 34 | + public bool heartbeat { get; set; } |
| 35 | + public int openSslCcs { get; set; } |
| 36 | + public int poodleTls { get; set; } |
| 37 | + |
| 38 | + public Details() |
| 39 | + { |
| 40 | + key = new Key(); |
| 41 | + cert = new Cert(); |
| 42 | + chain = new Chain(); |
| 43 | + suites = new Suites(); |
| 44 | + sims = new Sims(); |
| 45 | + } |
| 46 | + } |
| 47 | +} |
0 commit comments