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

com.dahuatech.hutool.http.ssl.DefaultTrustManager Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.hutool.http.ssl;

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

/**
 * 证书管理
 *
 * @author Looly
 */
public class DefaultTrustManager implements X509TrustManager {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy