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

cn.geektool.http.ssl.TrustAnyHostnameVerifier Maven / Gradle / Ivy

There is a newer version: 0.0.9
Show newest version
package cn.geektool.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