diff options
author | Jose <jose@zeroc.com> | 2015-08-18 15:27:33 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-08-18 15:27:33 +0200 |
commit | 466ed19e491e2b291cba9e79c2cef046badf747b (patch) | |
tree | c2538b8b42e23adc3296ee768019966a2bf210fc /scripts/TestUtil.py | |
parent | Minor fix for Expect.py script (diff) | |
download | ice-466ed19e491e2b291cba9e79c2cef046badf747b.tar.bz2 ice-466ed19e491e2b291cba9e79c2cef046badf747b.tar.xz ice-466ed19e491e2b291cba9e79c2cef046badf747b.zip |
ICE-6712 - test operations C++ Java cross SSL failure
Disabled cipher suite TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
for Java clients, this cause problems with IceSSL SCHannel
implementations.
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index ea67a4c0927..99c2167da74 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -887,7 +887,11 @@ if isDarwin(): sslConfigTree["cpp"]["colloc"] += " --IceSSL.Keychain=colloc.keychain --IceSSL.KeychainPassword=password" if isWin32(): + # + # This cipher suites doesn't work well between Java and SChannel TLS1.2 implementations. + # sslConfigTree["java"]["client"] += " --IceSSL.Ciphers=!TLS_DHE_RSA_WITH_AES_128_GCM_SHA256" + sslConfigTree["java"]["server"] += " --IceSSL.Ciphers=!TLS_DHE_RSA_WITH_AES_128_GCM_SHA256" sslConfigTree["python"] = sslConfigTree["cpp"] sslConfigTree["ruby"] = sslConfigTree["cpp"] |