Skip to content

Commit 33b0ba1

Browse files
committed
Merge pull request xapi-project#20 from thomassa/ciphersuites
CP-13189 TLS ciphersuite TLS_RSA_WITH_AES_128_CBC_SHA
2 parents 85c83b3 + 3791332 commit 33b0ba1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

stunnel/stunnel.ml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,9 @@ type t = { mutable pid: pid; fd: Unix.file_descr; host: string; port: int;
129129

130130
let config_file verify_cert extended_diagnosis host port legacy =
131131

132-
let good_ciphers = "!EXPORT:TLSv1.2" in
132+
(* 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
133135
let back_compat_ciphers = "RSA+AES256-SHA:RSA+AES128-SHA:RSA+RC4-SHA:RSA+RC4-MD5:RSA+DES-CBC3-SHA" in
134136

135137
let lines = [

0 commit comments

Comments
 (0)