1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.handler.ssl;
17
18 import io.netty.util.internal.PlatformDependent;
19
20 import java.lang.reflect.InvocationTargetException;
21 import java.lang.reflect.Method;
22 import javax.net.ssl.SSLEngine;
23
24
25
26
27 final class Conscrypt {
28
29
30 private static final Method IS_CONSCRYPT_SSLENGINE;
31
32 static {
33 Method isConscryptSSLEngine = null;
34
35
36
37 if (PlatformDependent.javaVersion() < 15 || PlatformDependent.isAndroid()) {
38 try {
39 Class<?> providerClass = Class.forName("org.conscrypt.OpenSSLProvider", true,
40 PlatformDependent.getClassLoader(ConscryptAlpnSslEngine.class));
41 providerClass.newInstance();
42
43 Class<?> conscryptClass = Class.forName("org.conscrypt.Conscrypt", true,
44 PlatformDependent.getClassLoader(ConscryptAlpnSslEngine.class));
45 isConscryptSSLEngine = conscryptClass.getMethod("isConscrypt", SSLEngine.class);
46 } catch (Throwable ignore) {
47
48 }
49 }
50 IS_CONSCRYPT_SSLENGINE = isConscryptSSLEngine;
51 }
52
53
54
55
56 static boolean isAvailable() {
57 return IS_CONSCRYPT_SSLENGINE != null;
58 }
59
60
61
62
63 static boolean isEngineSupported(SSLEngine engine) {
64 try {
65 return IS_CONSCRYPT_SSLENGINE != null && (Boolean) IS_CONSCRYPT_SSLENGINE.invoke(null, engine);
66 } catch (IllegalAccessException ignore) {
67 return false;
68 } catch (InvocationTargetException ex) {
69 throw new RuntimeException(ex);
70 }
71 }
72
73 private Conscrypt() { }
74 }