Uses of Class
io.netty5.handler.ssl.SslProvider
-
Packages that use SslProvider Package Description io.netty5.handler.ssl -
-
Uses of SslProvider in io.netty5.handler.ssl
Methods in io.netty5.handler.ssl that return SslProvider Modifier and Type Method Description static SslProvider
SslContext. defaultClientProvider()
Returns the default client-side implementation provider currently in use.static SslProvider
SslContext. defaultServerProvider()
Returns the default server-side implementation provider currently in use.static SslProvider
SslProvider. valueOf(String name)
Returns the enum constant of this type with the specified name.static SslProvider[]
SslProvider. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.netty5.handler.ssl with parameters of type SslProvider Modifier and Type Method Description static boolean
SslProvider. isAlpnSupported(SslProvider provider)
static boolean
SslProvider. isTlsv13Supported(SslProvider sslProvider)
static boolean
SslProvider. isTlsv13Supported(SslProvider sslProvider, Provider provider)
static SslContext
SslContext. newClientContext(SslProvider provider)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newClientContext(SslProvider provider, File certChainFile)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newClientContext(SslProvider provider, File certChainFile, TrustManagerFactory trustManagerFactory)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newClientContext(SslProvider provider, File trustCertCollectionFile, TrustManagerFactory trustManagerFactory, File keyCertChainFile, File keyFile, String keyPassword, KeyManagerFactory keyManagerFactory, Iterable<String> ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newClientContext(SslProvider provider, File certChainFile, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newClientContext(SslProvider provider, File certChainFile, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newClientContext(SslProvider provider, TrustManagerFactory trustManagerFactory)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newServerContext(SslProvider provider, File certChainFile, File keyFile)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword, Iterable<String> ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout)
Deprecated.Replaced bySslContextBuilder
static SslContext
SslContext. newServerContext(SslProvider provider, File trustCertCollectionFile, TrustManagerFactory trustManagerFactory, File keyCertChainFile, File keyFile, String keyPassword, KeyManagerFactory keyManagerFactory, Iterable<String> ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout)
Deprecated.Replaced bySslContextBuilder
SslContextBuilder
SslContextBuilder. sslProvider(SslProvider provider)
TheSslContext
implementation to use.
-