Uses of Class javax.net.ssl.SSLException

Uses in package javax.net.ssl

Classes derived from javax.net.ssl.SSLException

class
An exception that signals an error in the SSL handshake phase.
class
An exception signaling a problem using a public or private key in an SSL communication.
class
An exception thrown when the remote peer could not be verified.
class
An exception thrown when a fatal protocol error is encountered.

Methods which throw type javax.net.ssl.SSLException

void
Begin, or restart, the SSL handshake.
void
Close the inbound state.
SSLEngineResult
Unwraps a byte buffer recieved from the network, storing the decrypted, unwrapped bytes into the given buffer.
SSLEngineResult
Unwraps a byte buffer recieved from the network, storing the decrypted, unwrapped bytes into the given buffers.
SSLEngineResult
SSLEngine.unwrap(ByteBuffer source, ByteBuffer[] sinks, int offset, int length)
Unwraps a byte buffer received from the network, storing the decrypted, unwrapped bytes into the given buffers.
SSLEngineResult
Wraps a byte buffer into an SSL message, for preparation to send it over the network.
SSLEngineResult
SSLEngine.wrap(ByteBuffer[] sources, int offset, int length, ByteBuffer sink)
Wraps byte buffers into an SSL message, for preparation to send them over the network.
SSLEngineResult
SSLEngine.wrap(ByteBuffer[] sources, ByteBuffer sink)
Wraps byte buffers into an SSL message, for preparation to send them over the network.