Skip to content

Commit 9b9a1f8

Browse files
committed
Update ciphers used by stunnel/XAPI
For the sake of security, CBC ciphers are required to be removed from TLS interface of XAPI. But only one would remain in available cipher list after the removal. Therefore a new configuration 'ECDHE-RSA-AES128-GCM-SHA25' is added. Note: IANA name of 'ECDHE-RSA-AES128-GCM-SHA25 is 'TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256'. Signed-off-by: Ming Lu <[email protected]>
1 parent 0cd00f6 commit 9b9a1f8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/xcp_const.ml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
let good_ciphersuites =
22
String.concat ":"
33
[
4-
"ECDHE-RSA-AES256-SHA384"
5-
; "ECDHE-RSA-AES256-GCM-SHA384"
6-
; "AES256-SHA256"
7-
; "AES128-SHA256"
4+
"ECDHE-RSA-AES256-GCM-SHA384"
5+
; "ECDHE-RSA-AES128-GCM-SHA256"
86
]

0 commit comments

Comments
 (0)