Uses of Class
io.netty.handler.ssl.ClientAuth
-
Packages that use ClientAuth Package Description io.netty.handler.codec.quic QUIC implementationio.netty.handler.ssl SSL · TLS implementation based onSSLEngine
-
-
Uses of ClientAuth in io.netty.handler.codec.quic
Methods in io.netty.handler.codec.quic with parameters of type ClientAuth Modifier and Type Method Description QuicSslContextBuilder
QuicSslContextBuilder. clientAuth(ClientAuth clientAuth)
Sets the client authentication mode. -
Uses of ClientAuth in io.netty.handler.ssl
Methods in io.netty.handler.ssl that return ClientAuth Modifier and Type Method 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.Methods in io.netty.handler.ssl with parameters of type ClientAuth Modifier and Type Method Description SslContextBuilder
SslContextBuilder. clientAuth(ClientAuth clientAuth)
Sets the client authentication mode.Constructors in io.netty.handler.ssl with parameters of type ClientAuth Constructor Description JdkSslContext(javax.net.ssl.SSLContext sslContext, boolean isClient, ClientAuth clientAuth)
JdkSslContext(javax.net.ssl.SSLContext sslContext, boolean isClient, java.lang.Iterable<java.lang.String> ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, ClientAuth clientAuth)
JdkSslContext(javax.net.ssl.SSLContext sslContext, boolean isClient, java.lang.Iterable<java.lang.String> ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, ClientAuth clientAuth, java.lang.String[] protocols, boolean startTls)
Creates a newJdkSslContext
from a pre-configuredSSLContext
.
-