Home / Function/ testEncryptedNullPassword() — netty Function Reference

testEncryptedNullPassword() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/SslContextTest.java lines 67–76

    @Test
    public void testEncryptedNullPassword() throws Exception {
        assertThrows(InvalidKeySpecException.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                SslContext.toPrivateKey(
                        ResourcesUtil.getFile(getClass(), "test_encrypted_empty_pass.pem"), null);
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free