Package | Description |
---|---|
io.netty.handler.ssl |
SSL ·
TLS implementation based on
SSLEngine |
Modifier and Type | Field and Description |
---|---|
private ClientAuth |
SslContextBuilder.clientAuth |
private ClientAuth |
JdkSslContext.clientAuth |
Modifier and Type | Method and Description |
---|---|
static ClientAuth |
ClientAuth.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ClientAuth[] |
ClientAuth.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
SslContextBuilder |
SslContextBuilder.clientAuth(ClientAuth clientAuth)
Sets the client authentication mode.
|
(package private) static SslContext |
SslContext.newServerContextInternal(SslProvider provider,
java.security.cert.X509Certificate[] trustCertCollection,
javax.net.ssl.TrustManagerFactory trustManagerFactory,
java.security.cert.X509Certificate[] keyCertChain,
java.security.PrivateKey key,
java.lang.String keyPassword,
javax.net.ssl.KeyManagerFactory keyManagerFactory,
java.lang.Iterable<java.lang.String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
long sessionCacheSize,
long sessionTimeout,
ClientAuth clientAuth,
boolean startTls) |
Constructor and Description |
---|
JdkSslContext(javax.net.ssl.SSLContext sslContext,
boolean isClient,
ClientAuth clientAuth)
Creates a new
JdkSslContext from a pre-configured SSLContext . |
JdkSslContext(javax.net.ssl.SSLContext sslContext,
boolean isClient,
java.lang.Iterable<java.lang.String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
ClientAuth clientAuth)
Creates a new
JdkSslContext from a pre-configured SSLContext . |
JdkSslContext(javax.net.ssl.SSLContext sslContext,
boolean isClient,
java.lang.Iterable<java.lang.String> ciphers,
CipherSuiteFilter cipherFilter,
JdkApplicationProtocolNegotiator apn,
ClientAuth clientAuth,
boolean startTls) |
JdkSslServerContext(java.security.cert.X509Certificate[] trustCertCollection,
javax.net.ssl.TrustManagerFactory trustManagerFactory,
java.security.cert.X509Certificate[] keyCertChain,
java.security.PrivateKey key,
java.lang.String keyPassword,
javax.net.ssl.KeyManagerFactory keyManagerFactory,
java.lang.Iterable<java.lang.String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
long sessionCacheSize,
long sessionTimeout,
ClientAuth clientAuth,
boolean startTls)
Deprecated.
|