Home / Function/ KeyManagerFactory() — netty Function Reference

KeyManagerFactory() — netty Function Reference

Architecture documentation for the KeyManagerFactory() function in OpenSslX509KeyManagerFactoryProviderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  134cfe94_5d83_f4dd_d41e_81ba8f9a6ead["KeyManagerFactory()"]
  aac58e94_c5d6_8ee6_b131_73b659f93800["OpenSslX509KeyManagerFactoryProviderTest"]
  134cfe94_5d83_f4dd_d41e_81ba8f9a6ead -->|defined in| aac58e94_c5d6_8ee6_b131_73b659f93800
  style 134cfe94_5d83_f4dd_d41e_81ba8f9a6ead fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/OpenSslX509KeyManagerFactoryProviderTest.java lines 24–35

    @Override
    protected KeyManagerFactory newKeyManagerFactory() throws Exception {
        char[] password = PASSWORD.toCharArray();
        final KeyStore keystore = KeyStore.getInstance("PKCS12");
        try (InputStream resourceAsStream = getClass().getResourceAsStream("mutual_auth_server.p12")) {
            keystore.load(resourceAsStream, password);

            OpenSslX509KeyManagerFactory kmf = new OpenSslX509KeyManagerFactory();
            kmf.init(keystore, password);
            return kmf;
        }
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free