Uses of Class
javax.net.ssl.SSLException
-
Packages that use SSLException 软件包 描述 javax.net.ssl 提供安全套接字包的类。 -
-
Uses of SSLException in javax.net.ssl
Subclasses of SSLException in javax.net.ssl 变量和类型 类 描述 classSSLHandshakeException表示客户端和服务器无法协商所需的安全级别。classSSLKeyException报告错误的SSL密钥。classSSLPeerUnverifiedException表示未验证对等方的身份。classSSLProtocolException报告SSL协议操作中的错误。Methods in javax.net.ssl that throw SSLException 变量和类型 方法 描述 abstract voidSSLEngine. beginHandshake()在此SSLEngine上启动握手(初始或重新协商)。abstract voidSSLEngine. closeInbound()表示不再向此SSLEngine发送入站网络数据。SSLEngineResultSSLEngine. unwrap(ByteBuffer src, ByteBuffer dst)尝试将SSL / TLS / DTLS网络数据解码为纯文本应用程序数据缓冲区。SSLEngineResultSSLEngine. unwrap(ByteBuffer src, ByteBuffer[] dsts)尝试将SSL / TLS / DTLS网络数据解码为一系列明文应用程序数据缓冲区。abstract SSLEngineResultSSLEngine. unwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length)尝试将SSL / TLS / DTLS网络数据解码为明文应用程序数据缓冲区的子序列。abstract SSLEngineResultSSLEngine. wrap(ByteBuffer[] srcs, int offset, int length, ByteBuffer dst)尝试将明文字节从数据缓冲区的子序列编码为SSL / TLS / DTLS网络数据。SSLEngineResultSSLEngine. wrap(ByteBuffer[] srcs, ByteBuffer dst)尝试将明文字节从一系列数据缓冲区编码为SSL / TLS / DTLS网络数据。SSLEngineResultSSLEngine. wrap(ByteBuffer src, ByteBuffer dst)Attempts to encode a buffer of plaintext application data into SSL/TLS/DTLS network data.
-