Uses of Enum
io.netty.handler.ssl.SslProvider
Packages that use SslProvider
-
Uses of SslProvider in io.netty.handler.ssl
Subclasses with type arguments of type SslProvider in io.netty.handler.sslMethods in io.netty.handler.ssl that return SslProviderModifier and TypeMethodDescriptionstatic SslProviderSslContext.defaultClientProvider()Returns the default client-side implementation provider currently in use.static SslProviderSslContext.defaultServerProvider()Returns the default server-side implementation provider currently in use.static SslProviderReturns 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.netty.handler.ssl with parameters of type SslProviderModifier and TypeMethodDescriptionstatic booleanSslProvider.isAlpnSupported(SslProvider provider) static booleanSslProvider.isOptionSupported(SslProvider sslProvider, SslContextOption<?> option) static booleanSslProvider.isTlsv13Supported(SslProvider sslProvider) static booleanSslProvider.isTlsv13Supported(SslProvider sslProvider, Provider provider) static SslContextSslContext.newClientContext(SslProvider provider) Deprecated.static SslContextSslContext.newClientContext(SslProvider provider, File certChainFile) Deprecated.Replaced bySslContextBuilderstatic SslContextSslContext.newClientContext(SslProvider provider, File certChainFile, TrustManagerFactory trustManagerFactory) Deprecated.Replaced bySslContextBuilderstatic SslContextSslContext.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 bySslContextBuilderstatic SslContextSslContext.newClientContext(SslProvider provider, File certChainFile, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout) Deprecated.Replaced bySslContextBuilderstatic SslContextSslContext.newClientContext(SslProvider provider, File certChainFile, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout) Deprecated.Replaced bySslContextBuilderstatic SslContextSslContext.newClientContext(SslProvider provider, TrustManagerFactory trustManagerFactory) Deprecated.Replaced bySslContextBuilderstatic SslContextSslContext.newServerContext(SslProvider provider, File certChainFile, File keyFile) Deprecated.Replaced bySslContextBuilderstatic SslContextSslContext.newServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword) Deprecated.Replaced bySslContextBuilderstatic SslContextSslContext.newServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword, Iterable<String> ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout) Deprecated.Replaced bySslContextBuilderstatic SslContextSslContext.newServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout) Deprecated.Replaced bySslContextBuilderstatic SslContextSslContext.newServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout) Deprecated.Replaced bySslContextBuilderstatic SslContextSslContext.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 bySslContextBuilderSslContextBuilder.sslProvider(SslProvider provider) TheSslContextimplementation to use.
SslContextBuilder