Skip to content
Snippets Groups Projects
Commit 8fbcf846 authored by gpotter2's avatar gpotter2
Browse files

Added client tls tests on appveyor

parent 9c7584c4
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@
### DISCLAIMER: Those tests are slow ###
= Load server util functions
~ open_ssl_client
import sys, os, re, time, multiprocessing, subprocess
......@@ -58,14 +59,17 @@ def test_tls_server(suite="", version=""):
= Testing TLS server with TLS 1.0 and TLS_RSA_WITH_RC4_128_SHA
~ open_ssl_client
test_tls_server("RC4-SHA", "-tls1")
= Testing TLS server with TLS 1.2 and TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
~ open_ssl_client
test_tls_server("DHE-RSA-AES128-SHA256", "-tls1_2")
= Testing TLS server with TLS 1.2 and TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
~ open_ssl_client
test_tls_server("ECDHE-RSA-AES256-GCM-SHA384", "-tls1_2")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment