summaryrefslogtreecommitdiff
path: root/openssl-listen
diff options
context:
space:
mode:
Diffstat (limited to 'openssl-listen')
-rwxr-xr-xopenssl-listen4
1 files changed, 4 insertions, 0 deletions
diff --git a/openssl-listen b/openssl-listen
index c6c1025..ddaf850 100755
--- a/openssl-listen
+++ b/openssl-listen
@@ -120,6 +120,10 @@ start_server() {
"$ca_key" "$ca_crt" || return 1
fi
+ # Enable insecure ciphers too, this script is for generating all possible
+ # test samples supported by openssl.
+ opts+=( -cipher ALL:NULL )
+
openssl s_server -accept $port \
"${opts[@]}" \
-cert "$pkdir$crtfile" -key "$pkdir$keyfile" -www "$@" &