54 lines
1.7 KiB
Java
54 lines
1.7 KiB
Java
package io.grpc.internal;
|
|
|
|
import java.lang.reflect.InvocationTargetException;
|
|
import java.lang.reflect.Method;
|
|
import java.security.Provider;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public final class ConscryptLoader {
|
|
private static final Method IS_CONSCRYPT_METHOD;
|
|
private static final Method NEW_PROVIDER_METHOD;
|
|
|
|
static {
|
|
Method method;
|
|
Method method2;
|
|
try {
|
|
Class<?> cls = Class.forName("org.conscrypt.Conscrypt");
|
|
method = cls.getMethod("newProvider", new Class[0]);
|
|
method2 = cls.getMethod("isConscrypt", Provider.class);
|
|
} catch (ClassNotFoundException unused) {
|
|
method = null;
|
|
method2 = null;
|
|
} catch (NoSuchMethodException e) {
|
|
throw new AssertionError(e);
|
|
}
|
|
NEW_PROVIDER_METHOD = method;
|
|
IS_CONSCRYPT_METHOD = method2;
|
|
}
|
|
|
|
public static boolean isConscrypt(Provider provider) {
|
|
if (!isPresent()) {
|
|
return false;
|
|
}
|
|
try {
|
|
return ((Boolean) IS_CONSCRYPT_METHOD.invoke(null, provider)).booleanValue();
|
|
} catch (IllegalAccessException e) {
|
|
throw new AssertionError(e);
|
|
} catch (InvocationTargetException e2) {
|
|
throw new AssertionError(e2);
|
|
}
|
|
}
|
|
|
|
public static Provider newProvider() throws Throwable {
|
|
if (!isPresent()) {
|
|
Class.forName("org.conscrypt.Conscrypt");
|
|
throw new AssertionError("Unexpected failure referencing Conscrypt class");
|
|
}
|
|
return (Provider) NEW_PROVIDER_METHOD.invoke(null, new Object[0]);
|
|
}
|
|
|
|
public static boolean isPresent() {
|
|
return NEW_PROVIDER_METHOD != null;
|
|
}
|
|
}
|