Package | Description |
---|---|
org.jboss.netty.handler.ssl |
Modifier and Type | Method and Description |
---|---|
SslBufferPool |
SslContext.bufferPool()
|
static SslBufferPool |
SslHandler.getDefaultBufferPool()
Returns the default
SslBufferPool used when no pool is
specified in the constructor. |
Modifier and Type | Method and Description |
---|---|
static SslContext |
SslContext.newClientContext(SslBufferPool bufPool,
File certChainFile,
TrustManagerFactory trustManagerFactory,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(SslProvider provider,
SslBufferPool bufPool,
File certChainFile,
TrustManagerFactory trustManagerFactory,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newServerContext(SslBufferPool bufPool,
File certChainFile,
File keyFile,
String keyPassword,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Creates a new server-side
SslContext . |
static SslContext |
SslContext.newServerContext(SslProvider provider,
SslBufferPool bufPool,
File certChainFile,
File keyFile,
String keyPassword,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Creates a new server-side
SslContext . |
Constructor and Description |
---|
JdkSslClientContext(SslBufferPool bufPool,
File certChainFile,
TrustManagerFactory trustManagerFactory,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Creates a new instance.
|
JdkSslServerContext(SslBufferPool bufPool,
File certChainFile,
File keyFile,
String keyPassword,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Creates a new instance.
|
OpenSslEngine(long sslCtx,
SslBufferPool bufPool,
String fallbackApplicationProtocol)
Creates a new instance
|
OpenSslServerContext(SslBufferPool bufPool,
File certChainFile,
File keyFile,
String keyPassword,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Creates a new instance.
|
SslHandler(SSLEngine engine,
SslBufferPool bufferPool)
Creates a new instance.
|
SslHandler(SSLEngine engine,
SslBufferPool bufferPool,
boolean startTls)
Creates a new instance.
|
SslHandler(SSLEngine engine,
SslBufferPool bufferPool,
boolean startTls,
Timer timer,
long handshakeTimeoutInMillis)
Creates a new instance.
|
Copyright © 2008-2016 The Netty Project. All Rights Reserved.