CipherSuiteSelector | 
CipherSuiteSelector.add(String cipherSuiteName) | 
 A convenience method to add a cipher suite by name. 
 | 
CipherSuiteSelector | 
CipherSuiteSelector.add(CipherSuitePredicate predicate) | 
 Add all cipher suites which are matched by the given predicate. 
 | 
static CipherSuiteSelector | 
CipherSuiteSelector.aggregate(CipherSuiteSelector cipherSuiteSelector1,
         CipherSuiteSelector cipherSuiteSelector2) | 
 | 
CipherSuiteSelector | 
CipherSuiteSelector.deleteFully(String cipherSuiteName) | 
 A convenience method to permanently delete a cipher suite by name. 
 | 
CipherSuiteSelector | 
CipherSuiteSelector.deleteFully(CipherSuitePredicate predicate) | 
 Permanently delete all cipher suites which are matched by the given predicate. 
 | 
static CipherSuiteSelector | 
CipherSuiteSelector.empty() | 
 Get the basic empty SSL cipher suite selector. 
 | 
static CipherSuiteSelector | 
CipherSuiteSelector.empty(boolean useTLS13) | 
 Get the basic empty SSL cipher suite selector. 
 | 
static CipherSuiteSelector | 
CipherSuiteSelector.fromNamesString(String names) | 
 Create a cipher suite selector from the given OpenSSL-style TLSv1.3 cipher suites string. 
 | 
static CipherSuiteSelector | 
CipherSuiteSelector.fromString(String string) | 
 Create a cipher suite selector from the given OpenSSL-style cipher list string. 
 | 
static CipherSuiteSelector | 
CipherSuiteSelector.openSslAll() | 
 Get the cipher selector which OpenSSL defines as ALL. 
 | 
static CipherSuiteSelector | 
CipherSuiteSelector.openSslCombinedDefault() | 
 Get the cipher selector which OpenSSL defines as DEFAULT combined with the
 cipher suites which OpenSSL defines as the default cipher suites for TLSv1.3. 
 | 
static CipherSuiteSelector | 
CipherSuiteSelector.openSslDefault() | 
 Get the cipher selector which OpenSSL defines as DEFAULT. 
 | 
static CipherSuiteSelector | 
CipherSuiteSelector.openSslDefaultCipherSuites() | 
 Get the cipher selector which OpenSSL defines as the default cipher suites for TLSv1.3. 
 | 
CipherSuiteSelector | 
CipherSuiteSelector.pushToEnd(String cipherSuiteName) | 
 A convenience method to push a cipher suite by name to the end of the enabled ciphers list. 
 | 
CipherSuiteSelector | 
CipherSuiteSelector.pushToEnd(CipherSuitePredicate predicate) | 
 Push all cipher suites which are matched by the given predicate to the end of the enabled ciphers list. 
 | 
CipherSuiteSelector | 
CipherSuiteSelector.remove(String cipherSuiteName) | 
 A convenience method to remove a cipher suite by name. 
 | 
CipherSuiteSelector | 
CipherSuiteSelector.remove(CipherSuitePredicate predicate) | 
 Remove all cipher suites which are matched by the given predicate. 
 | 
CipherSuiteSelector | 
CipherSuiteSelector.sortByAlgorithmKeyLength() | 
 Sort all of the enabled ciphers by decreasing key length. 
 |