gpt4 book ai didi

Android SSL - CertPathValidatorException

转载 作者:太空宇宙 更新时间:2023-11-03 14:41:45 25 4
gpt4 key购买 nike

我的 HTTPS 服务托管在 TomCat 中(.keystore 在 JDK bin 中的 keytool 的帮助下创建)。

服务器证书是自签名的,并通过将其安装在受信任的根授权机构中使其成为受信任的。

我可以从浏览器访问该服务,但无法从 Android 访问该服务。我是 J2EE 的初学者。

enter image description here

host.cert(放置在 Assets 目录中)是使用 OpenSSL 创建的。

我正在使用来自 Android 开发者网站的代码 fragment

        try {
// Load CAs from an InputStream
// (could be from a resource or ByteArrayInputStream or ...)
CertificateFactory cf = CertificateFactory.getInstance("X.509");
// From https://www.washington.edu/itconnect/security/ca/load-der.crt

InputStream inn=getAssets().open("host.cert");

Certificate ca;
try {
ca = cf.generateCertificate(inn);
Log.i("TEST","ca=" + ((X509Certificate) ca).getSubjectDN());
} finally {
inn.close();
}

// Create a KeyStore containing our trusted CAs
String keyStoreType = KeyStore.getDefaultType();
KeyStore keyStore = KeyStore.getInstance(keyStoreType);
keyStore.load(null, null);
keyStore.setCertificateEntry("ca", ca);

// Create a TrustManager that trusts the CAs in our KeyStore
String tmfAlgorithm = TrustManagerFactory.getDefaultAlgorithm();
TrustManagerFactory tmf = TrustManagerFactory.getInstance(tmfAlgorithm);
tmf.init(keyStore);

// Create an SSLContext that uses our TrustManager
SSLContext context = SSLContext.getInstance("TLS");
context.init(null, tmf.getTrustManagers(), null);

// Tell the URLConnection to use a SocketFactory from our SSLContext
URL url = new URL("https://192.168.56.1:8443/RestHTTPS/JavaCodeGeeks/AuthorService/authors/");
HttpsURLConnection urlConnection =
(HttpsURLConnection)url.openConnection();
urlConnection.setSSLSocketFactory(context.getSocketFactory());
InputStream in = urlConnection.getInputStream();

byte arr[]=new byte[in.available()];
in.read(arr);

String str=new String(arr);
Log.i("TEST",str);

}catch (Exception e){
Log.e("TEST",e.toString());
e.printStackTrace();
}

我知道这个问题已经问过了,但我找不到解决方案。

最佳答案

我会为仍然面临问题的人发布解决方案。

主要注意3点(Android developer site中已经说明)

  • 创建自定义信任管理器以绕过默认信任管理器。
  • 手动验证主机名是否可接受。
  • 切勿将“localhost”或“127.0.0.1”用于测试目的,而是使用您 PC 的 IP 地址。

完整代码如下

try {

// Things to Note 1 : Bypass default Trust Managers
TrustManager[] byPassTrustManagers = new TrustManager[]{new X509TrustManager() {
public X509Certificate[] getAcceptedIssuers() {
return new X509Certificate[0];
}

public void checkClientTrusted(X509Certificate[] chain, String authType) {
}

public void checkServerTrusted(X509Certificate[] chain, String authType) {
}
}};

CertificateFactory cf = CertificateFactory.getInstance("X.509");
InputStream inn = getAssets().open("keystore.cer");
Certificate ca;
try {
ca = cf.generateCertificate(inn);
Log.i("TEST", "ca=" + ((X509Certificate) ca).getSubjectDN());
} finally {
inn.close();
}


String keyStoreType = "BKS";
KeyStore.getDefaultType();
KeyStore keyStore = KeyStore.getInstance(keyStoreType);
keyStore.load(null, null);
keyStore.setCertificateEntry("ca", ca);

String tmfAlgorithm = TrustManagerFactory.getDefaultAlgorithm();
TrustManagerFactory tmf = TrustManagerFactory.getInstance(tmfAlgorithm);
tmf.init(keyStore);

SSLContext context = SSLContext.getInstance("TLS");
context.init(null, byPassTrustManagers, null);

// Things to Note 2 : Don't use "localhost" ,instead use IP
URL url = new URL("https://192.168.56.1:8443/RestHTTPS/JavaCodeGeeks/AuthorService/authors");
HttpsURLConnection urlConnection =
(HttpsURLConnection) url.openConnection();

urlConnection.setSSLSocketFactory(context.getSocketFactory());

// Things to Note 3 : Allow all host
urlConnection.setHostnameVerifier(new HostnameVerifier() {
@Override
public boolean verify(String hostname, SSLSession session) {
return true;
}
});

Log.i("TEST", urlConnection.getResponseMessage() + "");

InputStream in = urlConnection.getInputStream();

InputStreamReader isw = new InputStreamReader(in);

int data = isw.read();
String str = "";
while (data != -1) {
char current = (char) data;
data = isw.read();
str += current;
}

Log.i("TEST", "" + str);

} catch (Exception e) {
Log.e("TEST", e.toString());
e.printStackTrace();
}

关于Android SSL - CertPathValidatorException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42577922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com