Returns handshake's delegated tasks to be run
the delegated task to be executed. See Also:javax.net.ssl.SSLEngine.getDelegatedTask See Also: method documentation See Also: for more information
This method works according to the specification of implemented class.
See Also:javax.net.ssl.SSLEngine.getEnabledCipherSuites See Also: method See Also: documentation for more information
This method works according to the specification of implemented class.
See Also:javax.net.ssl.SSLEngine.getEnabledProtocols See Also: method See Also: documentation for more information
This method works according to the specification of implemented class.
See Also:javax.net.ssl.SSLEngine.getHandshakeStatus See Also: method See Also: documentation for more information
This method works according to the specification of implemented class.
See Also:javax.net.ssl.SSLEngine.getNeedClientAuth See Also: method See Also: documentation for more information
This method works according to the specification of implemented class.
See Also:javax.net.ssl.SSLEngine.getSession See Also: method See Also: documentation for more information
Returns names of supported cipher suites.
array of strings containing the names of supported cipher suites See Also:javax.net.ssl.SSLEngine.getSupportedCipherSuites See Also: method See Also: documentation for more information
This method works according to the specification of implemented class.
See Also:javax.net.ssl.SSLEngine.getSupportedProtocols See Also: method See Also: documentation for more information
This method works according to the specification of implemented class.
See Also:javax.net.ssl.SSLEngine.getUseClientMode See Also: method See Also: documentation for more information
This method works according to the specification of implemented class.
See Also:javax.net.ssl.SSLEngine.getWantClientAuth See Also: method See Also: documentation for more information
This method works according to the specification of implemented class.
See Also:javax.net.ssl.SSLEngine.isInboundDone See Also: method See Also: documentation for more information
This method works according to the specification of implemented class.
See Also:javax.net.ssl.SSLEngine.isOutboundDone See Also: method See Also: documentation for more information
setEnableSessionCreation
public void setEnableSessionCreation(boolean flag)(Code)
Decodes one complete SSL/TLS record provided in the source buffer.
If decoded record contained application data, this data will
be placed in the destination buffers.
For more information about TLS record fragmentation see
TLS v 1 specification (http://www.ietf.org/rfc/rfc2246.txt) p 6.2.
Parameters: src - source buffer containing SSL/TLS record. Parameters: dsts - destination buffers to place received application data. See Also:javax.net.ssl.SSLEngine.unwrap(ByteBufferByteBuffer[]intint) See Also: method documentation for more information
Encodes the application data into SSL/TLS record. If handshake status
of the engine differs from NOT_HANDSHAKING the operation can work
without consuming of the source data.
For more information about TLS record fragmentation see
TLS v 1 specification (http://www.ietf.org/rfc/rfc2246.txt) p 6.2.
Parameters: srcs - the source buffers with application data to be encodedinto SSL/TLS record. Parameters: offset - the offset in the destination buffers array pointing tothe first buffer with the source data. Parameters: len - specifies the maximum number of buffers to be procesed. Parameters: dst - the destination buffer where encoded data will be placed. See Also:javax.net.ssl.SSLEngine.wrap(ByteBuffer[]intintByteBuffer) See Also: method See Also: documentation for more information