Package | Description |
---|---|
org.jboss.netty.handler.ssl |
Modifier and Type | Class and Description |
---|---|
class |
JdkSslClientContext
A client-side
SslContext which uses JDK's SSL/TLS implementation. |
class |
JdkSslContext
An
SslContext which uses JDK's SSL/TLS implementation. |
class |
JdkSslServerContext
A server-side
SslContext which uses JDK's SSL/TLS implementation. |
class |
OpenSslServerContext
A server-side
SslContext which uses OpenSSL's SSL/TLS implementation. |
Modifier and Type | Method and Description |
---|---|
static SslContext |
SslContext.newClientContext()
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(File certChainFile)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(File certChainFile,
TrustManagerFactory trustManagerFactory)
Creates a new client-side
SslContext . |
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)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(SslProvider provider,
File certChainFile)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(SslProvider provider,
File certChainFile,
TrustManagerFactory trustManagerFactory)
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.newClientContext(SslProvider provider,
TrustManagerFactory trustManagerFactory)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(TrustManagerFactory trustManagerFactory)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newServerContext(File certChainFile,
File keyFile)
Creates a new server-side
SslContext . |
static SslContext |
SslContext.newServerContext(File certChainFile,
File keyFile,
String keyPassword)
Creates a new server-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,
File certChainFile,
File keyFile)
Creates a new server-side
SslContext . |
static SslContext |
SslContext.newServerContext(SslProvider provider,
File certChainFile,
File keyFile,
String keyPassword)
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 . |
Copyright © 2008-2016 The Netty Project. All Rights Reserved.