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

com.github.wzc789376152.utils.net.TrustAnyTrustManager Maven / Gradle / Ivy

The newest version!
package com.github.wzc789376152.utils.net;

import javax.net.ssl.X509TrustManager;
import java.security.cert.X509Certificate;

/**
 * @author zhongquanliang 2020/1/18.
 */
public class TrustAnyTrustManager implements X509TrustManager {

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

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

    @Override
    public X509Certificate[] getAcceptedIssuers() {
        return new X509Certificate[]{};
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy