Home / Function/ testSslContextWithUnencryptedPrivateKeyEmptyPass() — netty Function Reference

testSslContextWithUnencryptedPrivateKeyEmptyPass() — netty Function Reference

Architecture documentation for the testSslContextWithUnencryptedPrivateKeyEmptyPass() function in SslContextTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  a1e55f66_9e53_46e8_a4ca_4e63fbb7dfab["testSslContextWithUnencryptedPrivateKeyEmptyPass()"]
  a01749eb_679b_481b_5606_5c18a5630be5["SslContextTest"]
  a1e55f66_9e53_46e8_a4ca_4e63fbb7dfab -->|defined in| a01749eb_679b_481b_5606_5c18a5630be5
  style a1e55f66_9e53_46e8_a4ca_4e63fbb7dfab fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/SslContextTest.java lines 102–113

    @Test
    public void testSslContextWithUnencryptedPrivateKeyEmptyPass() throws SSLException {
        final File keyFile = ResourcesUtil.getFile(getClass(), "test_unencrypted.pem");
        final File crtFile = ResourcesUtil.getFile(getClass(), "test.crt");

        assertThrows(SSLException.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                newSslContext(crtFile, keyFile, "");
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testSslContextWithUnencryptedPrivateKeyEmptyPass() do?
testSslContextWithUnencryptedPrivateKeyEmptyPass() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SslContextTest.java.
Where is testSslContextWithUnencryptedPrivateKeyEmptyPass() defined?
testSslContextWithUnencryptedPrivateKeyEmptyPass() is defined in handler/src/test/java/io/netty/handler/ssl/SslContextTest.java at line 102.

Analyze Your Own Codebase

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

Try Supermodel Free