- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
24 lines
796 B
Java
24 lines
796 B
Java
package com.amazonaws.http;
|
|
|
|
import javax.net.ssl.HttpsURLConnection;
|
|
import javax.net.ssl.SSLContext;
|
|
import javax.net.ssl.SSLSocketFactory;
|
|
|
|
/* loaded from: classes.dex */
|
|
public abstract class TLS12SocketFactory extends SSLSocketFactory {
|
|
public static final Object contextLock = new Object();
|
|
public static final String[] SUPPORTED_PROTOCOLS = {"TLSv1", "TLSv1.1", "TLSv1.2"};
|
|
public static SSLContext sslContext = null;
|
|
|
|
public static TLS12SocketFactory createTLS12SocketFactory(SSLContext sSLContext) {
|
|
return null;
|
|
}
|
|
|
|
public static void fixTLSPre21(HttpsURLConnection httpsURLConnection, TLS12SocketFactory tLS12SocketFactory) {
|
|
}
|
|
|
|
public static TLS12SocketFactory createTLS12SocketFactory() {
|
|
return createTLS12SocketFactory(null);
|
|
}
|
|
}
|