cn.geektool.http.ssl.DefaultSSLFactory Maven / Gradle / Ivy
The newest version!
package cn.geektool.http.ssl;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
/**
* 默认的SSLSocketFactory
*
* @author jd
* @since 5.1.2
*/
public class DefaultSSLFactory extends CustomProtocolsSSLFactory {
public DefaultSSLFactory() throws KeyManagementException, NoSuchAlgorithmException {
super();
}
}