Package | Description |
---|---|
io.netty.handler.ssl |
Modifier and Type | Method and Description |
---|---|
SslContextBuilder |
SslContextBuilder.applicationProtocolConfig(ApplicationProtocolConfig apn)
Application protocol negotiation configuration.
|
SslContextBuilder |
SslContextBuilder.ciphers(Iterable<String> ciphers)
The cipher suites to enable, in the order of preference.
|
SslContextBuilder |
SslContextBuilder.ciphers(Iterable<String> ciphers,
CipherSuiteFilter cipherFilter)
The cipher suites to enable, in the order of preference.
|
static SslContextBuilder |
SslContextBuilder.forClient()
Creates a builder for new client-side
SslContext . |
static SslContextBuilder |
SslContextBuilder.forServer(File keyCertChainFile,
File keyFile)
Creates a builder for new server-side
SslContext . |
static SslContextBuilder |
SslContextBuilder.forServer(File keyCertChainFile,
File keyFile,
String keyPassword)
Creates a builder for new server-side
SslContext . |
SslContextBuilder |
SslContextBuilder.keyManager(File keyCertChainFile,
File keyFile)
Identifying certificate for this host.
|
SslContextBuilder |
SslContextBuilder.keyManager(File keyCertChainFile,
File keyFile,
String keyPassword)
Identifying certificate for this host.
|
SslContextBuilder |
SslContextBuilder.keyManager(KeyManagerFactory keyManagerFactory)
Identifying manager for this host.
|
SslContextBuilder |
SslContextBuilder.sessionCacheSize(long sessionCacheSize)
Set the size of the cache used for storing SSL session objects.
|
SslContextBuilder |
SslContextBuilder.sessionTimeout(long sessionTimeout)
Set the timeout for the cached SSL session objects, in seconds.
|
SslContextBuilder |
SslContextBuilder.sslProvider(SslProvider provider)
The
SslContext implementation to use. |
SslContextBuilder |
SslContextBuilder.trustManager(File trustCertChainFile)
Trusted certificates for verifying the remote endpoint's certificate.
|
SslContextBuilder |
SslContextBuilder.trustManager(TrustManagerFactory trustManagerFactory)
Trusted manager for verifying the remote endpoint's certificate.
|
Copyright © 2008–2015 The Netty Project. All rights reserved.