From: Dave B. <bla...@us...> - 2013-05-21 15:06:51
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/util In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1792/src/org/sblim/cimclient/internal/util Modified Files: Tag: Experimental WBEMConfiguration.java Log Message: 2642 Seperate properties needed for cim client and listener to filter out ciphers Index: WBEMConfiguration.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/internal/util/WBEMConfiguration.java,v retrieving revision 1.17.2.38 retrieving revision 1.17.2.39 diff -u -d -r1.17.2.38 -r1.17.2.39 --- WBEMConfiguration.java 16 May 2013 18:55:51 -0000 1.17.2.38 +++ WBEMConfiguration.java 21 May 2013 15:06:49 -0000 1.17.2.39 @@ -48,6 +48,7 @@ * 2618 2013-02-27 blaschke-oss Need to add property to disable weak cipher suites for the secure indication * 2628 2013-03-26 blaschke-oss Limit size of LinkedList of CIMEvents to be dispatched * 2635 2013-05-16 blaschke-oss Slowloris DoS attack for CIM indication listener port + * 2642 2013-05-21 blaschke-oss Seperate properties needed for cim client and listener to filter out ciphers */ package org.sblim.cimclient.internal.util; @@ -762,12 +763,23 @@ } /** - * Returns the comma-separated list of cipher suites to be disabled. + * Returns the comma-separated list of cipher suites to be disabled by + * client. * * @return The list of cipher suites */ - public String getSslCipherSuitesToDisable() { - return getProperty(WBEMConfigurationProperties.SSL_CIPHER_SUITES_TO_DISABLE, null); + public String getSslClientCipherSuitesToDisable() { + return getProperty(WBEMConfigurationProperties.SSL_CLIENT_CIPHER_SUITES_TO_DISABLE, null); + } + + /** + * Returns the comma-separated list of cipher suites to be disabled by + * listener. + * + * @return The list of cipher suites + */ + public String getSslListenerCipherSuitesToDisable() { + return getProperty(WBEMConfigurationProperties.SSL_LISTENER_CIPHER_SUITES_TO_DISABLE, null); } /** |