Uses of Class
javax.net.ssl.SSLException
Packages that use SSLException
-
Uses of SSLException in javax.net.ssl
Subclasses of SSLException in javax.net.sslModifier and TypeClassDescriptionclass
Indicates that the client and server could not negotiate the desired level of security.class
Reports a bad SSL key.class
Indicates that the peer's identity has not been verified.class
Reports an error in the operation of the SSL protocol.Methods in javax.net.ssl that throw SSLExceptionModifier and TypeMethodDescriptionabstract void
SSLEngine.beginHandshake()
Initiates handshaking (initial or renegotiation) on this SSLEngine.abstract void
SSLEngine.closeInbound()
Signals that no more inbound network data will be sent to thisSSLEngine
.SSLEngine.unwrap
(ByteBuffer src, ByteBuffer dst) Attempts to decode SSL/TLS/DTLS network data into a plaintext application data buffer.SSLEngine.unwrap
(ByteBuffer src, ByteBuffer[] dsts) Attempts to decode SSL/TLS/DTLS network data into a sequence of plaintext application data buffers.abstract SSLEngineResult
SSLEngine.unwrap
(ByteBuffer src, ByteBuffer[] dsts, int offset, int length) Attempts to decode SSL/TLS/DTLS network data into a subsequence of plaintext application data buffers.abstract SSLEngineResult
SSLEngine.wrap
(ByteBuffer[] srcs, int offset, int length, ByteBuffer dst) Attempts to encode plaintext bytes from a subsequence of data buffers into SSL/TLS/DTLS network data.SSLEngine.wrap
(ByteBuffer[] srcs, ByteBuffer dst) Attempts to encode plaintext bytes from a sequence of data buffers into SSL/TLS/DTLS network data.SSLEngine.wrap
(ByteBuffer src, ByteBuffer dst) Attempts to encode a buffer of plaintext application data into SSL/TLS/DTLS network data.