| Package | Description |
|---|---|
| io.netty.handler.ssl |
| Modifier and Type | Method and Description |
|---|---|
static ClientAuth |
ClientAuth.valueOf(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.
|
| Constructor and Description |
|---|
JdkSslContext(SSLContext sslContext,
boolean isClient,
ClientAuth clientAuth)
|
JdkSslContext(SSLContext sslContext,
boolean isClient,
Iterable<String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
ClientAuth clientAuth)
|
JdkSslContext(SSLContext sslContext,
boolean isClient,
Iterable<String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
ClientAuth clientAuth,
String[] protocols,
boolean startTls)
Creates a new
JdkSslContext from a pre-configured SSLContext. |
Copyright © 2008–2025 The Netty Project. All rights reserved.