Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[CONJ-332] enabledSslCipherSuites setting to permit new ciphers
  • Loading branch information
rusher committed Aug 22, 2016
1 parent 881fa44 commit 789d559
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -866,7 +866,7 @@ protected void enabledSslProtocolSuites(SSLSocket sslSocket) throws QueryExcepti
*/
protected void enabledSslCipherSuites(SSLSocket sslSocket) throws QueryException {
if (options.enabledSslCipherSuites != null) {
List<String> possibleCiphers = Arrays.asList(sslSocket.getEnabledCipherSuites());
List<String> possibleCiphers = Arrays.asList(sslSocket.getSupportedCipherSuites());
String[] ciphers = options.enabledSslCipherSuites.split("[,;\\s]+");
for (String cipher : ciphers) {
if (!possibleCiphers.contains(cipher)) {
Expand Down

0 comments on commit 789d559

Please sign in to comment.