예제 #1
0
 public Details()
 {
     key = new Key();
     cert = new Cert();
     chain = new Chain();
     protocols = new List<Protocol>();
     suites = new Suites();
     sims = new Sims();
 }
예제 #2
0
 public Details()
 {
     key       = new Key();
     cert      = new Cert();
     chain     = new Chain();
     protocols = new List <Protocol>();
     suites    = new Suites();
     sims      = new Sims();
 }
예제 #3
0
 /// <summary>
 /// Will text if a 3DES Cipher suite is present.
 /// </summary>
 /// <param name="suites"></param>
 /// <returns></returns>
 private string check3DESCipherPresence(Suites suites)
 {
     foreach (List cipher in suites.list)
     {
         if (cipher.name.Equals("TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA")) return "True";
     }
     return "False";
 }