Home / Function/ testInvalidCipherOpenSSL() — netty Function Reference

testInvalidCipherOpenSSL() — netty Function Reference

Architecture documentation for the testInvalidCipherOpenSSL() function in SslContextBuilderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  cbd9f017_5b38_ec79_4a4e_4944cfe709f7["testInvalidCipherOpenSSL()"]
  a1363dc7_e5a9_fb44_bb34_1e17132005fa["SslContextBuilderTest"]
  cbd9f017_5b38_ec79_4a4e_4944cfe709f7 -->|defined in| a1363dc7_e5a9_fb44_bb34_1e17132005fa
  9c3293d9_7b9e_8b99_3861_e89ca4aaa01f["testInvalidCipher()"]
  cbd9f017_5b38_ec79_4a4e_4944cfe709f7 -->|calls| 9c3293d9_7b9e_8b99_3861_e89ca4aaa01f
  style cbd9f017_5b38_ec79_4a4e_4944cfe709f7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/SslContextBuilderTest.java lines 237–250

    @Test
    public void testInvalidCipherOpenSSL() throws Exception {
        OpenSsl.ensureAvailability();
        try {
            // This may fail or not depending on the OpenSSL version used
            // See https://github.com/openssl/openssl/issues/7196
            testInvalidCipher(SslProvider.OPENSSL);
            if (!OpenSsl.versionString().contains("1.1.1")) {
                fail();
            }
        } catch (SSLException expected) {
            // ok
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does testInvalidCipherOpenSSL() do?
testInvalidCipherOpenSSL() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SslContextBuilderTest.java.
Where is testInvalidCipherOpenSSL() defined?
testInvalidCipherOpenSSL() is defined in handler/src/test/java/io/netty/handler/ssl/SslContextBuilderTest.java at line 237.
What does testInvalidCipherOpenSSL() call?
testInvalidCipherOpenSSL() calls 1 function(s): testInvalidCipher.

Analyze Your Own Codebase

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

Try Supermodel Free