Uses of Class
javax.net.ssl.SSLEngineResult
| 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 SSLEngineResult in javax.net.ssl
Methods in javax.net.ssl that return SSLEngineResult Modifier and Type Method Description SSLEngineResultSSLEngine. unwrap(ByteBuffer src, ByteBuffer dst)Decodes the incoming network data buffer into the application data buffer.SSLEngineResultSSLEngine. unwrap(ByteBuffer src, ByteBuffer[] dsts)Decodes the incoming network data buffer into the application data buffers.abstract SSLEngineResultSSLEngine. unwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length)Decodes the incoming network data buffer into application data buffers.abstract SSLEngineResultSSLEngine. wrap(ByteBuffer[] srcs, int offset, int length, ByteBuffer dst)Encodes the outgoing application data buffers into the network data buffer.SSLEngineResultSSLEngine. wrap(ByteBuffer[] srcs, ByteBuffer dst)Encodes the outgoing application data buffers into the network data buffer.SSLEngineResultSSLEngine. wrap(ByteBuffer src, ByteBuffer dst)Encodes the outgoing application data buffer into the network data buffer. -
Uses of SSLEngineResult in org.conscrypt
Methods in org.conscrypt that return SSLEngineResult Modifier and Type Method Description SSLEngineResultSSLEngineImpl. unwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length)Decodes one complete SSL/TLS record provided in the source buffer.SSLEngineResultSSLEngineImpl. wrap(ByteBuffer[] srcs, int offset, int len, ByteBuffer dst)Encodes the application data into SSL/TLS record.