正在查看: bbinstant v6.24.0 应用的 i.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: bbinstant v6.24.0 应用的 i.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package com.snowplowanalytics.snowplow.tracker.emitter;
import java.io.IOException;
import java.net.InetAddress;
import java.net.Socket;
import java.net.UnknownHostException;
import java.security.KeyManagementException;
import java.security.NoSuchAlgorithmException;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSocket;
import javax.net.ssl.SSLSocketFactory;
public class i extends SSLSocketFactory {
private SSLSocketFactory internalSSLSocketFactory;
private String[] versions;
public i(String[] strArr) throws KeyManagementException, NoSuchAlgorithmException {
this.versions = strArr;
SSLContext sSLContext = SSLContext.getInstance("TLS");
sSLContext.init(null, null, null);
this.internalSSLSocketFactory = sSLContext.getSocketFactory();
}
private Socket enableTLSOnSocket(Socket socket) {
if (socket != null && (socket instanceof SSLSocket)) {
((SSLSocket) socket).setEnabledProtocols(this.versions);
}
return socket;
}
@Override
public Socket createSocket() throws IOException {
return enableTLSOnSocket(this.internalSSLSocketFactory.createSocket());
}
@Override
public String[] getDefaultCipherSuites() {
return this.internalSSLSocketFactory.getDefaultCipherSuites();
}
@Override
public String[] getSupportedCipherSuites() {
return this.internalSSLSocketFactory.getSupportedCipherSuites();
}
@Override
public Socket createSocket(Socket socket, String str, int i2, boolean z) throws IOException {
return enableTLSOnSocket(this.internalSSLSocketFactory.createSocket(socket, str, i2, z));
}
@Override
public Socket createSocket(String str, int i2) throws IOException, UnknownHostException {
return enableTLSOnSocket(this.internalSSLSocketFactory.createSocket(str, i2));
}
@Override
public Socket createSocket(String str, int i2, InetAddress inetAddress, int i3) throws IOException, UnknownHostException {
return enableTLSOnSocket(this.internalSSLSocketFactory.createSocket(str, i2, inetAddress, i3));
}
@Override
public Socket createSocket(InetAddress inetAddress, int i2) throws IOException {
return enableTLSOnSocket(this.internalSSLSocketFactory.createSocket(inetAddress, i2));
}
@Override
public Socket createSocket(InetAddress inetAddress, int i2, InetAddress inetAddress2, int i3) throws IOException {
return enableTLSOnSocket(this.internalSSLSocketFactory.createSocket(inetAddress, i2, inetAddress2, i3));
}
}