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

com.base4j.util.http.ssl.TrustAnyHostnameVerifier Maven / Gradle / Ivy

The newest version!
package com.base4j.util.http.ssl;

import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLSession;

/**
 * https 域名校验
 *
 * @author Looly
 */
public class TrustAnyHostnameVerifier implements HostnameVerifier {
    @Override
    public boolean verify(String hostname, SSLSession session) {
        return true;// 直接返回true
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy