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

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

Introduction

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

The text is from its open source code.

Field

Method

SslContextBuilderapplicationProtocolConfig(ApplicationProtocolConfig apn)
Application protocol negotiation configuration.
SslContextbuild()
Create new SslContext instance with configured settings.
SslContextBuilderforClient()
Creates a builder for new client-side SslContext .
SslContextBuilderkeyManager(File keyCertChainFile, File keyFile)
Identifying certificate for this host.
SslContextBuilderkeyManager(InputStream keyCertChainInputStream, InputStream keyInputStream)
Identifying certificate for this host.
SslContextBuilderkeyManager(PrivateKey key, X509Certificate... keyCertChain)
Identifying certificate for this host.
SslContextBuilderkeyManager(PrivateKey key, Iterable keyCertChain)
Identifying certificate for this host.
SslContextBuilderkeyManager(File keyCertChainFile, File keyFile, String keyPassword)
Identifying certificate for this host.
SslContextBuilderkeyManager(InputStream keyCertChainInputStream, InputStream keyInputStream, String keyPassword)
Identifying certificate for this host.
SslContextBuilderkeyManager(PrivateKey key, String keyPassword, X509Certificate... keyCertChain)
Identifying certificate for this host.
SslContextBuilderkeyManager(PrivateKey key, String keyPassword, Iterable keyCertChain)
Identifying certificate for this host.
SslContextBuilderkeyManager(KeyManagerFactory keyManagerFactory)
Identifying manager for this host.
SslContextBuilderkeyManager(KeyManager keyManager)
A single key manager managing the identity information of this host.
SslContextBuildersslProvider(SslProvider provider)
The SslContext implementation to use.
SslContextBuildertrustManager(File trustCertCollectionFile)
Trusted certificates for verifying the remote endpoint's certificate.
SslContextBuildertrustManager(InputStream trustCertCollectionInputStream)
Trusted certificates for verifying the remote endpoint's certificate.
SslContextBuildertrustManager(X509Certificate... trustCertCollection)
Trusted certificates for verifying the remote endpoint's certificate, null uses the system default.
SslContextBuildertrustManager(Iterable trustCertCollection)
Trusted certificates for verifying the remote endpoint's certificate, null uses the system default.
SslContextBuildertrustManager(TrustManagerFactory trustManagerFactory)
Trusted manager for verifying the remote endpoint's certificate.
SslContextBuildertrustManager(TrustManager trustManager)
A single trusted manager for verifying the remote endpoint's certificate.