Javax.Net.Ssl.SSLEngine: Method Members

The methods of Javax.Net.Ssl.SSLEngine are listed below. For a list of all members, see the SSLEngine Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

abstract
BeginHandshake()
Initiates a handshake on this engine.
abstract
CloseInbound()
Notifies this engine instance that no more inbound network data will be sent to this engine.
abstract
CloseOutbound()
Notifies this engine instance that no more outbound application data will be sent to this engine.
abstract
GetEnabledCipherSuites() : string[]
Returns the SSL cipher suite names that are enabled in this engine instance.
abstract
GetEnabledProtocols() : string[]
Returns the protocol version names that are enabled in this engine instance.
abstract
GetSupportedCipherSuites() : string[]
Returns the SSL cipher suite names that are supported by this engine.
abstract
GetSupportedProtocols() : string[]
Returns the protocol names that are supported by this engine.
abstract
SetEnabledCipherSuites(string[])
Sets the SSL cipher suite names that should be enabled in this engine instance.
abstract
SetEnabledProtocols(string[])
Sets the protocol version names that should be enabled in this engine instance.
Unwrap(Java.Nio.ByteBuffer, Java.Nio.ByteBuffer) : SSLEngineResult
Decodes the incoming network data buffer into the application data buffer.
Unwrap(Java.Nio.ByteBuffer, Java.Nio.ByteBuffer[]) : SSLEngineResult
Decodes the incoming network data buffer into the application data buffers.
abstract
Unwrap(Java.Nio.ByteBuffer, Java.Nio.ByteBuffer[], int, int) : SSLEngineResult
Decodes the incoming network data buffer into application data buffers.
Wrap(Java.Nio.ByteBuffer, Java.Nio.ByteBuffer) : SSLEngineResult
Encodes the outgoing application data buffer into the network data buffer.
Wrap(Java.Nio.ByteBuffer[], Java.Nio.ByteBuffer) : SSLEngineResult
Encodes the outgoing application data buffers into the network data buffer.
abstract
Wrap(Java.Nio.ByteBuffer[], int, int, Java.Nio.ByteBuffer) : SSLEngineResult
Encodes the outgoing application data buffers into the network data buffer.