All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.zoomlion.cloud.common.util.MyX509TrustManager Maven / Gradle / Ivy

The newest version!
package com.zoomlion.cloud.common.util;

import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;

import javax.net.ssl.X509TrustManager;

public class MyX509TrustManager implements X509TrustManager{
	// 检查客户端证书
	public void checkClientTrusted(X509Certificate[] chain, String authType)
			throws CertificateException {
	}

	// 检查服务器端证书
	public void checkServerTrusted(X509Certificate[] chain, String authType)
			throws CertificateException {
	}

	// 返回受信任的X509证书数组
	public X509Certificate[] getAcceptedIssuers() {
		return null;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy