| Package | Description |
|---|---|
| org.jboss.netty.handler.ssl |
SSL ·
TLS implementation based on
SSLEngine |
| Modifier and Type | Method and Description |
|---|---|
static SslProvider |
SslContext.defaultClientProvider()
Returns the default client-side implementation provider currently in use.
|
static SslProvider |
SslContext.defaultServerProvider()
Returns the default server-side implementation provider currently in use.
|
static SslProvider |
SslProvider.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SslProvider[] |
SslProvider.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
static SslContext |
SslContext.newClientContext(SslProvider provider)
Creates a new client-side
SslContext. |
static SslContext |
SslContext.newClientContext(SslProvider provider,
java.io.File certChainFile)
Creates a new client-side
SslContext. |
static SslContext |
SslContext.newClientContext(SslProvider provider,
java.io.File certChainFile,
javax.net.ssl.TrustManagerFactory trustManagerFactory)
Creates a new client-side
SslContext. |
static SslContext |
SslContext.newClientContext(SslProvider provider,
SslBufferPool bufPool,
java.io.File certChainFile,
javax.net.ssl.TrustManagerFactory trustManagerFactory,
java.lang.Iterable<java.lang.String> ciphers,
java.lang.Iterable<java.lang.String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Creates a new client-side
SslContext. |
static SslContext |
SslContext.newClientContext(SslProvider provider,
javax.net.ssl.TrustManagerFactory trustManagerFactory)
Creates a new client-side
SslContext. |
static SslContext |
SslContext.newServerContext(SslProvider provider,
java.io.File certChainFile,
java.io.File keyFile)
Creates a new server-side
SslContext. |
static SslContext |
SslContext.newServerContext(SslProvider provider,
java.io.File certChainFile,
java.io.File keyFile,
java.lang.String keyPassword)
Creates a new server-side
SslContext. |
static SslContext |
SslContext.newServerContext(SslProvider provider,
SslBufferPool bufPool,
java.io.File certChainFile,
java.io.File keyFile,
java.lang.String keyPassword,
java.lang.Iterable<java.lang.String> ciphers,
java.lang.Iterable<java.lang.String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Creates a new server-side
SslContext. |