Home / Function/ jdkAndOpenSSL() — netty Function Reference

jdkAndOpenSSL() — netty Function Reference

Architecture documentation for the jdkAndOpenSSL() function in SocketSslSessionReuseTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  217a39c1_ae27_e8b5_b6a7_c3c22148600d["jdkAndOpenSSL()"]
  833479b7_a1b1_3c02_8b20_02d1937b1c41["SocketSslSessionReuseTest"]
  217a39c1_ae27_e8b5_b6a7_c3c22148600d -->|defined in| 833479b7_a1b1_3c02_8b20_02d1937b1c41
  style 217a39c1_ae27_e8b5_b6a7_c3c22148600d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketSslSessionReuseTest.java lines 102–113

    public static Collection<Object[]> jdkAndOpenSSL() throws Exception {
        return Arrays.asList(new Object[]{
                        SslContextBuilder.forServer(CERT_FILE, KEY_FILE).sslProvider(SslProvider.JDK),
                        SslContextBuilder.forClient().trustManager(CERT_FILE).sslProvider(SslProvider.JDK)
                                .endpointIdentificationAlgorithm(null)
                },
                new Object[]{
                        SslContextBuilder.forServer(CERT_FILE, KEY_FILE).sslProvider(SslProvider.OPENSSL),
                        SslContextBuilder.forClient().trustManager(CERT_FILE).sslProvider(SslProvider.OPENSSL)
                                .endpointIdentificationAlgorithm(null)
                });
    }

Domain

Subdomains

Frequently Asked Questions

What does jdkAndOpenSSL() do?
jdkAndOpenSSL() is a function in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketSslSessionReuseTest.java.
Where is jdkAndOpenSSL() defined?
jdkAndOpenSSL() is defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketSslSessionReuseTest.java at line 102.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free