Package | Description |
---|---|
org.wildfly.security.ssl |
Modifier and Type | Field and Description |
---|---|
static SSLContextSelector |
SSLContextSelector.NULL_SELECTOR
A selector which always returns
null (no match). |
Modifier and Type | Method and Description |
---|---|
static SSLContextSelector |
SSLContextSelector.aggregate(SSLContextSelector... selectors)
Create an aggregate selector which executes each given selector in order until a match is found.
|
static SSLContextSelector |
SSLContextSelector.aggregate(SSLContextSelector selector1,
SSLContextSelector selector2)
Create an aggregate selector which executes each given selector in order until a match is found.
|
static SSLContextSelector |
SSLContextSelector.constantSelector(SSLContext context)
Create a selector which always returns the same context.
|
static SSLContextSelector |
SSLContextSelector.sniMatcherSelector(SNIMatcher matcher,
SSLContext context)
Create a selector which returns the given SSL context if the given SNI matcher matches.
|
Modifier and Type | Method and Description |
---|---|
static SSLContextSelector |
SSLContextSelector.aggregate(SSLContextSelector... selectors)
Create an aggregate selector which executes each given selector in order until a match is found.
|
static SSLContextSelector |
SSLContextSelector.aggregate(SSLContextSelector selector1,
SSLContextSelector selector2)
Create an aggregate selector which executes each given selector in order until a match is found.
|
static SecurityFactory<SSLEngine> |
SSLUtils.createDispatchingSSLEngineFactory(SSLContextSelector selector)
Get a factory which produces SSL engines which dispatch to the appropriate SSL context based on the information
in the SSL greeting.
|
static SSLEngine |
SSLUtils.createSelectingSSLEngine(SSLContextSelector selector)
Get a server SSL engine which dispatches to the appropriate SSL context based on the information in the
SSL greeting.
|
static SSLEngine |
SSLUtils.createSelectingSSLEngine(SSLContextSelector selector,
String host,
int port)
Get a server SSL engine which dispatches to the appropriate SSL context based on the information in the
SSL greeting.
|
Copyright © 2020 JBoss by Red Hat. All rights reserved.