Skip to content

Commit 84be4a0

Browse files
vgavinashGitHub Enterprise
authored andcommitted
Backporting PR708 & PR709 to 9.3.0 wherever applicable (#716)
* Update JMSTests.java * Replacing SSL cipher as suggested by Rob * Chaning to *TLS12ORHIGHER
1 parent 96cb678 commit 84be4a0

File tree

1 file changed

+2
-2
lines changed
  • test/messaging/src/main/java/com/ibm/mqcontainer/test

1 file changed

+2
-2
lines changed

test/messaging/src/main/java/com/ibm/mqcontainer/test/JMSTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,10 +82,10 @@ static MQConnectionFactory createMQConnectionFactory(String channel, String addr
8282
boolean ibmjre = System.getenv("IBMJRE").equals("true");
8383
if (ibmjre){
8484
System.setProperty("com.ibm.mq.cfg.useIBMCipherMappings", "true");
85-
factory.setSSLCipherSuite("SSL_RSA_WITH_AES_128_CBC_SHA256");
85+
factory.setSSLCipherSuite("*TLS12ORHIGHER");
8686
} else {
8787
System.setProperty("com.ibm.mq.cfg.useIBMCipherMappings", "false");
88-
factory.setSSLCipherSuite("TLS_RSA_WITH_AES_128_CBC_SHA256");
88+
factory.setSSLCipherSuite("*TLS12ORHIGHER");
8989
}
9090
}
9191
return factory;

0 commit comments

Comments
 (0)