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

io.itit.itf.okhttp.ssl.X509TrustManagerImpl Maven / Gradle / Ivy

There is a newer version: 1.4
Show newest version
package io.itit.itf.okhttp.ssl;

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

import javax.net.ssl.X509TrustManager;

/**
 * 
 * @author icecooly
 *
 */
public class X509TrustManagerImpl implements X509TrustManager{
	@Override
	public void checkClientTrusted(X509Certificate[] chain, String authType)
	throws CertificateException {
	}
	@Override
	public void checkServerTrusted(X509Certificate[] chain, String authType) 
	throws CertificateException {
	}
	@Override
	public X509Certificate[] getAcceptedIssuers() {
		return new X509Certificate[0];
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy