We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 85c83b3 + 3791332 commit 33b0ba1Copy full SHA for 33b0ba1
stunnel/stunnel.ml
@@ -129,7 +129,9 @@ type t = { mutable pid: pid; fd: Unix.file_descr; host: string; port: int;
129
130
let config_file verify_cert extended_diagnosis host port legacy =
131
132
- let good_ciphers = "!EXPORT:TLSv1.2" in
+ (* This "good" list must match, or at least contain one of, the
133
+ * GOOD_CIPHERS in xen-api/scripts/init.d-xapissl *)
134
+ let good_ciphers = "!EXPORT:RSA+AES128-SHA" in
135
let back_compat_ciphers = "RSA+AES256-SHA:RSA+AES128-SHA:RSA+RC4-SHA:RSA+RC4-MD5:RSA+DES-CBC3-SHA" in
136
137
let lines = [
0 commit comments