Getting javax.net.ssl.SSLHandshakeException: Connection closed by peer in Android 5.0.2(获取 javax.net.ssl.SSLHandshakeException:Android 5.0.2 中的连接被对等方关闭)
问题描述
首先,我已经上网搜索,调试了3天.
First, I've already searched the internet and have been debugging for 3 days.
这是确切的错误,
javax.net.ssl.SSLHandshakeException: Connection closed by peer
at com.android.org.conscrypt.NativeCrypto.SSL_do_handshake(Native Method)
at com.android.org.conscrypt.OpenSSLSocketImpl.startHandshake(OpenSSLSocketImpl.java:302)
at com.android.okhttp.Connection.upgradeToTls(Connection.java:197)
at com.android.okhttp.Connection.connect(Connection.java:151)
at com.android.okhttp.internal.http.HttpEngine.connect(HttpEngine.java:276)
at com.android.okhttp.internal.http.HttpEngine.sendRequest(HttpEngine.java:211)
at com.android.okhttp.internal.http.HttpURLConnectionImpl.execute(HttpURLConnectionImpl.java:373)
at com.android.okhttp.internal.http.HttpURLConnectionImpl.connect(HttpURLConnectionImpl.java:106)
at com.android.okhttp.internal.http.HttpURLConnectionImpl.getOutputStream(HttpURLConnectionImpl.java:208)
at com.android.okhttp.internal.http.DelegatingHttpsURLConnection.getOutputStream(DelegatingHttpsURLConnection.java:218)
at com.android.okhttp.internal.http.HttpsURLConnectionImpl.getOutputStream(HttpsURLConnectionImpl.java:25)
at com.aws.wiremo.common.CommonFunctions.sendRequestEx(CommonFunctions.java:618)
at com.aws.wiremo.common.CommonFunctions.sendRequest(CommonFunctions.java:556)
at com.aws.wiremo.screen.kdo.LoadingScreen$MakeRequest.doInBackground(LoadingScreen.java:146)
at com.aws.wiremo.screen.kdo.LoadingScreen$MakeRequest.doInBackground(LoadingScreen.java:125)
at android.os.AsyncTask$2.call(AsyncTask.java:288)
at java.util.concurrent.FutureTask.run(FutureTask.java:237)
at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:231)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1112)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:587)
at java.lang.Thread.run(Thread.java:818)
出于保密原因,我无法发布代码.StackTrace 给出的异常不是由异常引起的,所以我无法真正诊断问题.
这里有一些我可以分享的信息.
Due to confidentiality reasons, I can't post the codes.
There's no caused by exception given by the StackTrace so i can't really diagnose the problem.
Here are some information I can share.
- 请求正在发送到 https://[IP_address]:443/
- 我正在向特殊硬件(例如控制箱)发送请求.我只能通过 POST 请求写入和检索数据.
- 我在 CustomTrustManager 的 checkServerTrusted 方法中收到的证书链有一个 CN,它不是 IP 地址也不是 DNS,更像是一个词(即 CN=commonname).
- 我的 HostNameVerifier 暂时是 ALLOW_ALL_HOSTNAME_VERIFIER(我认为这可以解决第三个信息的问题?).
- 我正在使用 SSLContext.getInstance("TLS"),我的协议是 TLSv1、TLSv1.1 和 TLSv1.2.
- 所使用的证书是自签名的.
- 在 checkServerTrusted 方法中,X509Certificate 链始终受信任管理器信任(我创建了一个始终信任证书的 trustManager).
我们将不胜感激.
Any inputs will be appreciated.
推荐答案
我的问题的答案是我注释了将生成的私钥添加到我的密钥库的代码,因此 SSL HandShake 在客户端身份验证期间失败.
The answer to my problem was that I commented the code for adding my generated private key to my key store so the SSL HandShake fails during client authentication.
我希望这个答案可以帮助别人.
I hope this answer can help somebody.
这篇关于获取 javax.net.ssl.SSLHandshakeException:Android 5.0.2 中的连接被对等方关闭的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取 javax.net.ssl.SSLHandshakeException:Android 5.0.2 中的连接被对等方关闭
基础教程推荐
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01