Uses of Class
javax.net.ssl.SSLEngine
| Package | Description |
|---|---|
| javax.net.ssl |
This package provides classes and interfaces needed to use the Secure
Sockets Layer (SSL) protocol and the successor Transport Layer
Security (TLS) protocol.
|
| org.conscrypt |
-
Uses of SSLEngine in javax.net.ssl
Methods in javax.net.ssl that return SSLEngine Modifier and Type Method Description SSLEngineSSLContext. createSSLEngine()Creates anSSLEngineinstance from this context.SSLEngineSSLContext. createSSLEngine(String peerHost, int peerPort)Creates anSSLEngineinstance from this context with the specified hostname and port.protected abstract SSLEngineSSLContextSpi. engineCreateSSLEngine()Creates anSSLEngineinstance from this context.protected abstract SSLEngineSSLContextSpi. engineCreateSSLEngine(String host, int port)Creates anSSLEngineinstance from this context with the specified hostname and port.Methods in javax.net.ssl with parameters of type SSLEngine Modifier and Type Method Description StringX509ExtendedKeyManager. chooseEngineClientAlias(String[] keyType, Principal[] issuers, SSLEngine engine)Chooses an alias for the client side of an SSL connection to authenticate it with the specified public key type and certificate issuers.StringX509ExtendedKeyManager. chooseEngineServerAlias(String keyType, Principal[] issuers, SSLEngine engine)Chooses an alias for the server side of an SSL connection to authenticate it with the specified public key type and certificate issuers. -
Uses of SSLEngine in org.conscrypt
Subclasses of SSLEngine in org.conscrypt Modifier and Type Class Description classSSLEngineImplImplementation of SSLEngine.Methods in org.conscrypt that return SSLEngine Modifier and Type Method Description SSLEngineSSLContextImpl. engineCreateSSLEngine()SSLEngineSSLContextImpl. engineCreateSSLEngine(String host, int port)Methods in org.conscrypt with parameters of type SSLEngine Modifier and Type Method Description StringKeyManagerImpl. chooseEngineClientAlias(String[] keyTypes, Principal[] issuers, SSLEngine engine)StringKeyManagerImpl. chooseEngineServerAlias(String keyType, Principal[] issuers, SSLEngine engine)