Uses of Class
org.wildfly.security.ssl.CipherSuiteSelector
-
Packages that use CipherSuiteSelector Package Description org.wildfly.security.auth.client Elytron Client enable remote clients to authenticate using Elytron.org.wildfly.security.ssl -
-
Uses of CipherSuiteSelector in org.wildfly.security.auth.client
Methods in org.wildfly.security.auth.client that return CipherSuiteSelector Modifier and Type Method Description (package private) static CipherSuiteSelectorElytronXmlParser. parseCipherSuiteSelectorType(org.wildfly.client.config.ConfigurationXMLStreamReader reader, ElytronXmlParser.Version xmlVersion)Parse an XML element of typessl-cipher-selector-typefrom an XML reader. -
Uses of CipherSuiteSelector in org.wildfly.security.ssl
Subclasses of CipherSuiteSelector in org.wildfly.security.ssl Modifier and Type Class Description (package private) static classCipherSuiteSelector.AddingCipherSuiteSelector(package private) static classCipherSuiteSelector.FullyDeletingCipherSuiteSelector(package private) static classCipherSuiteSelector.PushToEndCipherSuiteSelector(package private) static classCipherSuiteSelector.RemovingCipherSuiteSelector(package private) static classCipherSuiteSelector.SortByAlgorithmKeyLengthCipherSuiteSelectorFields in org.wildfly.security.ssl declared as CipherSuiteSelector Modifier and Type Field Description private CipherSuiteSelectorSSLConfiguratorImpl. cipherSuiteSelectorprivate CipherSuiteSelectorSSLContextBuilder. cipherSuiteSelectorprivate static CipherSuiteSelectorCipherSuiteSelector. EMPTY(package private) static CipherSuiteSelectorCipherSuiteSelector. OPENSSL_ALL(package private) static CipherSuiteSelectorCipherSuiteSelector. OPENSSL_COMBINED_DEFAULT(package private) static CipherSuiteSelectorCipherSuiteSelector. OPENSSL_DEFAULT(package private) static CipherSuiteSelectorCipherSuiteSelector. OPENSSL_DEFAULT_CIPHER_SUITES(package private) CipherSuiteSelectorCipherSuiteSelector. prevprivate static CipherSuiteSelectorCipherSuiteSelector. TLS13_EMPTYMethods in org.wildfly.security.ssl that return CipherSuiteSelector Modifier and Type Method Description CipherSuiteSelectorCipherSuiteSelector. add(String cipherSuiteName)A convenience method to add a cipher suite by name.CipherSuiteSelectorCipherSuiteSelector. add(CipherSuitePredicate predicate)Add all cipher suites which are matched by the given predicate.static CipherSuiteSelectorCipherSuiteSelector. aggregate(CipherSuiteSelector cipherSuiteSelector1, CipherSuiteSelector cipherSuiteSelector2)Create an aggregateCipherSuiteSelector.CipherSuiteSelectorCipherSuiteSelector. deleteFully(String cipherSuiteName)A convenience method to permanently delete a cipher suite by name.CipherSuiteSelectorCipherSuiteSelector. deleteFully(CipherSuitePredicate predicate)Permanently delete all cipher suites which are matched by the given predicate.static CipherSuiteSelectorCipherSuiteSelector. empty()Get the basic empty SSL cipher suite selector.static CipherSuiteSelectorCipherSuiteSelector. empty(boolean useTLS13)Get the basic empty SSL cipher suite selector.static CipherSuiteSelectorCipherSuiteSelector. fromNamesString(String names)Create a cipher suite selector from the given OpenSSL-style TLSv1.3 cipher suites string.static CipherSuiteSelectorCipherSuiteSelector. fromString(String string)Create a cipher suite selector from the given OpenSSL-style cipher list string.static CipherSuiteSelectorCipherSuiteSelector. openSslAll()Get the cipher selector which OpenSSL defines asALL.static CipherSuiteSelectorCipherSuiteSelector. openSslCombinedDefault()Get the cipher selector which OpenSSL defines asDEFAULTcombined with the cipher suites which OpenSSL defines as the default cipher suites for TLSv1.3.static CipherSuiteSelectorCipherSuiteSelector. openSslDefault()Get the cipher selector which OpenSSL defines asDEFAULT.static CipherSuiteSelectorCipherSuiteSelector. openSslDefaultCipherSuites()Get the cipher selector which OpenSSL defines as the default cipher suites for TLSv1.3.private static CipherSuiteSelectorCipherSuiteSelector. parseDelete(CipherSuiteSelector current, org.wildfly.common.iteration.CodePointIterator i)private static CipherSuiteSelectorCipherSuiteSelector. parseMoveToEnd(CipherSuiteSelector current, org.wildfly.common.iteration.CodePointIterator i)private static CipherSuiteSelectorCipherSuiteSelector. parseRemove(CipherSuiteSelector current, org.wildfly.common.iteration.CodePointIterator i)private static CipherSuiteSelectorCipherSuiteSelector. parseSpecial(CipherSuiteSelector current, org.wildfly.common.iteration.CodePointIterator i)CipherSuiteSelectorCipherSuiteSelector. pushToEnd(String cipherSuiteName)A convenience method to push a cipher suite by name to the end of the enabled ciphers list.CipherSuiteSelectorCipherSuiteSelector. pushToEnd(CipherSuitePredicate predicate)Push all cipher suites which are matched by the given predicate to the end of the enabled ciphers list.CipherSuiteSelectorCipherSuiteSelector. remove(String cipherSuiteName)A convenience method to remove a cipher suite by name.CipherSuiteSelectorCipherSuiteSelector. remove(CipherSuitePredicate predicate)Remove all cipher suites which are matched by the given predicate.CipherSuiteSelectorCipherSuiteSelector. sortByAlgorithmKeyLength()Sort all of the enabled ciphers by decreasing key length.Methods in org.wildfly.security.ssl with parameters of type CipherSuiteSelector Modifier and Type Method Description static CipherSuiteSelectorCipherSuiteSelector. aggregate(CipherSuiteSelector cipherSuiteSelector1, CipherSuiteSelector cipherSuiteSelector2)Create an aggregateCipherSuiteSelector.private static CipherSuiteSelectorCipherSuiteSelector. parseDelete(CipherSuiteSelector current, org.wildfly.common.iteration.CodePointIterator i)private static CipherSuiteSelectorCipherSuiteSelector. parseMoveToEnd(CipherSuiteSelector current, org.wildfly.common.iteration.CodePointIterator i)private static CipherSuiteSelectorCipherSuiteSelector. parseRemove(CipherSuiteSelector current, org.wildfly.common.iteration.CodePointIterator i)private static CipherSuiteSelectorCipherSuiteSelector. parseSpecial(CipherSuiteSelector current, org.wildfly.common.iteration.CodePointIterator i)SSLContextBuilderSSLContextBuilder. setCipherSuiteSelector(CipherSuiteSelector cipherSuiteSelector)Set the cipher suite selector to use for this context.Constructors in org.wildfly.security.ssl with parameters of type CipherSuiteSelector Constructor Description AddingCipherSuiteSelector(CipherSuiteSelector next, CipherSuitePredicate predicate)CipherSuiteSelector(CipherSuiteSelector prev)FullyDeletingCipherSuiteSelector(CipherSuiteSelector next, CipherSuitePredicate predicate)PushToEndCipherSuiteSelector(CipherSuiteSelector next, CipherSuitePredicate predicate)RemovingCipherSuiteSelector(CipherSuiteSelector next, CipherSuitePredicate predicate)SortByAlgorithmKeyLengthCipherSuiteSelector(CipherSuiteSelector prev)SSLConfiguratorImpl(ProtocolSelector protocolSelector, CipherSuiteSelector cipherSuiteSelector, boolean useCipherSuitesOrder)Construct a new instance in client mode.SSLConfiguratorImpl(ProtocolSelector protocolSelector, CipherSuiteSelector cipherSuiteSelector, boolean wantClientAuth, boolean needClientAuth, boolean useCipherSuitesOrder)Construct a new instance in server mode.
-