private void SetSslVersions(bool sslv3, bool tlsv10, bool tlsv11, bool tlsv12) { SslSetup.SetupSSLPorts(_application, new SslVersions() { Ssl30 = sslv3, Tls10 = tlsv10, Tls11 = tlsv11, Tls12 = tlsv12 }); Thread.Sleep(1000); }
private void SetSslVersions(bool tlsv10, bool tlsv11, bool tlsv12, bool tlsv13) { SslSetup.SetupSSLPorts(_application, new SslVersions() { Tls10 = tlsv10, Tls11 = tlsv11, Tls12 = tlsv12, Tls13 = tlsv13 }); Thread.Sleep(1000); }
public new void TestFixtureSetUp() { SslSetup.SetupSSLPorts(_application); Thread.Sleep(1000); }