Package | Description |
---|---|
org.wildfly.security.ssl |
Modifier and Type | Method and Description |
---|---|
CipherSuiteSelector |
CipherSuiteSelector.add(CipherSuitePredicate predicate)
Add all cipher suites which are matched by the given predicate.
|
CipherSuiteSelector |
CipherSuiteSelector.add(String cipherSuiteName)
A convenience method to add a cipher suite by name.
|
CipherSuiteSelector |
CipherSuiteSelector.deleteFully(CipherSuitePredicate predicate)
Permanently delete all cipher suites which are matched by the given predicate.
|
CipherSuiteSelector |
CipherSuiteSelector.deleteFully(String cipherSuiteName)
A convenience method to permanently delete a cipher suite by name.
|
static CipherSuiteSelector |
CipherSuiteSelector.empty()
Get the basic empty SSL cipher suite selector.
|
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.openSslDefault()
Get the cipher selector which OpenSSL defines as
DEFAULT . |
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.pushToEnd(String cipherSuiteName)
A convenience method to push a cipher suite by name to the end of the enabled ciphers list.
|
CipherSuiteSelector |
CipherSuiteSelector.remove(CipherSuitePredicate predicate)
Remove all cipher suites which are matched by the given predicate.
|
CipherSuiteSelector |
CipherSuiteSelector.remove(String cipherSuiteName)
A convenience method to remove a cipher suite by name.
|
CipherSuiteSelector |
CipherSuiteSelector.sortByAlgorithmKeyLength()
Sort all of the enabled ciphers by decreasing key length.
|
Modifier and Type | Method and Description |
---|---|
SSLContextBuilder |
SSLContextBuilder.setCipherSuiteSelector(CipherSuiteSelector cipherSuiteSelector)
Set the cipher suite selector to use for this context.
|
Copyright © 2020 JBoss by Red Hat. All rights reserved.