Java io.netty.handler.ssl SslContext fields, constructors, methods, implement or subclass

Example usage for Java io.netty.handler.ssl SslContext fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.handler.ssl SslContext.

The text is from its open source code.

Method

ApplicationProtocolNegotiatorapplicationProtocolNegotiator()
Returns the object responsible for negotiating application layer protocols for the TLS NPN/ALPN extensions.
ListcipherSuites()
Returns the list of enabled cipher suites, in the order of preference.
SslProviderdefaultClientProvider()
Returns the default client-side implementation provider currently in use.
SslProviderdefaultServerProvider()
Returns the default server-side implementation provider currently in use.
booleanisClient()
Returns the true if and only if this context is for client-side.
booleanisServer()
Returns true if and only if this context is for server-side.
SslContextnewClientContext(File certChainFile, TrustManagerFactory trustManagerFactory, Iterable ciphers, Iterable nextProtocols, long sessionCacheSize, long sessionTimeout)
Creates a new client-side SslContext .
SslContextnewClientContext(File certChainFile)
Creates a new client-side SslContext .
SslContextnewClientContext(TrustManagerFactory trustManagerFactory)
Creates a new client-side SslContext .
SslContextnewClientContext(SslProvider provider)
Creates a new client-side SslContext .
SslContextnewClientContext()
Creates a new client-side SslContext .
SslContextnewClientContext(SslProvider provider, File trustCertCollectionFile, TrustManagerFactory trustManagerFactory, File keyCertChainFile, File keyFile, String keyPassword, KeyManagerFactory keyManagerFactory, Iterable ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout)
Creates a new client-side SslContext .
SslContextnewClientContext(SslProvider provider, File certChainFile, TrustManagerFactory trustManagerFactory, Iterable ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout)
Creates a new client-side SslContext .
SSLEnginenewEngine(ByteBufAllocator alloc, String peerHost, int peerPort)
Creates a new SSLEngine using advisory peer information.
SSLEnginenewEngine(ByteBufAllocator alloc)
Creates a new SSLEngine .
SslHandlernewHandler(ByteBufAllocator alloc, boolean startTls, Executor executor)
Create a new SslHandler.
SslHandlernewHandler(ByteBufAllocator alloc, String peerHost, int peerPort)
Creates a new SslHandler
SslHandlernewHandler(ByteBufAllocator alloc)
Create a new SslHandler.
SslContextnewServerContext(File certChainFile, File keyFile)
Creates a new server-side SslContext .
SslContextnewServerContext(File certChainFile, File keyFile, String keyPassword)
Creates a new server-side SslContext .
SslContextnewServerContext(SslProvider provider, File certChainFile, File keyFile)
Creates a new server-side SslContext .
SslContextnewServerContext(File certChainFile, File keyFile, String keyPassword, Iterable ciphers, Iterable nextProtocols, long sessionCacheSize, long sessionTimeout)
Creates a new server-side SslContext .
SslContextnewServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword)
Creates a new server-side SslContext .
SslContextnewServerContext(SslProvider provider, File trustCertCollectionFile, TrustManagerFactory trustManagerFactory, File keyCertChainFile, File keyFile, String keyPassword, KeyManagerFactory keyManagerFactory, Iterable ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout)
Creates a new server-side SslContext .
SslContextnewServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword, TrustManagerFactory trustManagerFactory, Iterable ciphers, Iterable nextProtocols, long sessionCacheSize, long sessionTimeout)
Creates a new server-side SslContext .
SslContextnewServerContext(SslProvider provider, File certChainFile, File keyFile, String keyPassword, Iterable ciphers, CipherSuiteFilter cipherFilter, ApplicationProtocolConfig apn, long sessionCacheSize, long sessionTimeout)
Creates a new server-side SslContext .
SSLSessionContextsessionContext()
Returns the SSLSessionContext object held by this context.