java.lang.ObjectThis class defines the Service Provider Interface (SPI) for thejavax.net.ssl.SSLContextSpi
SSLContext
class.
All the abstract methods in this class must be implemented by each cryptographic service provider who wishes to supply the implementation of a particular SSL context.
1.4
- Method from javax.net.ssl.SSLContextSpi Summary: |
---|
engineCreateSSLEngine, engineCreateSSLEngine, engineGetClientSessionContext, engineGetDefaultSSLParameters, engineGetServerSessionContext, engineGetServerSocketFactory, engineGetSocketFactory, engineGetSupportedSSLParameters, engineInit |
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.net.ssl.SSLContextSpi Detail: |
---|
SSLEngine using this context.
Applications using this factory method are providing no hints for an internal session reuse strategy. If hints are desired, #engineCreateSSLEngine(String, int) should be used instead. Some cipher suites (such as Kerberos) require remote hostname information, in which case this factory method should not be used. |
SSLEngine using this context.
Applications using this factory method are providing hints for an internal session reuse strategy. Some cipher suites (such as Kerberos) require remote hostname information, in which case peerHost needs to be specified. |
SSLSessionContext object for
this context. |
The parameters will always have the ciphersuite and protocols arrays set to non-null values. The default implementation obtains the parameters from an SSLSocket created by calling the {@linkplain javax.net.SocketFactory#createSocket SocketFactory.createSocket()} method of this context's SocketFactory. |
SSLSessionContext object for
this context. |
ServerSocketFactory object for
this context. |
SocketFactory object for this
context. |
The parameters will always have the ciphersuite and protocols arrays set to non-null values. The default implementation obtains the parameters from an SSLSocket created by calling the {@linkplain javax.net.SocketFactory#createSocket SocketFactory.createSocket()} method of this context's SocketFactory. |
|