buildClientSslContextForMTLS() — netty Function Reference
Architecture documentation for the buildClientSslContextForMTLS() function in SSLEngineTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3d8a44de_993f_2a06_4ab4_7636ad7d89eb["buildClientSslContextForMTLS()"] 9150c92a_2afc_b83a_c3bf_86dfac6e9d9b["SSLEngineTest"] 3d8a44de_993f_2a06_4ab4_7636ad7d89eb -->|defined in| 9150c92a_2afc_b83a_c3bf_86dfac6e9d9b 36e8a3de_0260_c1f5_21e4_67bbf63cb1f0["mustCallResumeTrustedOnSessionResumption()"] 36e8a3de_0260_c1f5_21e4_67bbf63cb1f0 -->|calls| 3d8a44de_993f_2a06_4ab4_7636ad7d89eb 00852079_bb8f_3799_f1ac_a89eb99030cf["mustFailHandshakePromiseIfResumeServerTrustedThrows()"] 00852079_bb8f_3799_f1ac_a89eb99030cf -->|calls| 3d8a44de_993f_2a06_4ab4_7636ad7d89eb 113b5345_411b_23dc_dd32_c73e87f2c618["mustFailHandshakePromiseIfResumeClientTrustedThrows()"] 113b5345_411b_23dc_dd32_c73e87f2c618 -->|calls| 3d8a44de_993f_2a06_4ab4_7636ad7d89eb bf19737b_7dc7_9dfd_0a67_ae31448ebbe8["protocols()"] 3d8a44de_993f_2a06_4ab4_7636ad7d89eb -->|calls| bf19737b_7dc7_9dfd_0a67_ae31448ebbe8 e3b541e6_b593_4b1f_a637_da19020e73df["ciphers()"] 3d8a44de_993f_2a06_4ab4_7636ad7d89eb -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df style 3d8a44de_993f_2a06_4ab4_7636ad7d89eb fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java lines 4151–4161
private void buildClientSslContextForMTLS(
SSLEngineTestParam param, SelfSignedCertificate ssc, TrustManager clientTm) throws SSLException {
clientSslCtx = wrapContext(param, SslContextBuilder.forClient()
.keyManager(ssc.key(), ssc.cert())
.trustManager(clientTm)
.sslProvider(sslClientProvider())
.sslContextProvider(clientSslContextProvider())
.protocols(param.protocols())
.ciphers(param.ciphers())
.build());
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does buildClientSslContextForMTLS() do?
buildClientSslContextForMTLS() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java.
Where is buildClientSslContextForMTLS() defined?
buildClientSslContextForMTLS() is defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java at line 4151.
What does buildClientSslContextForMTLS() call?
buildClientSslContextForMTLS() calls 2 function(s): ciphers, protocols.
What calls buildClientSslContextForMTLS()?
buildClientSslContextForMTLS() is called by 3 function(s): mustCallResumeTrustedOnSessionResumption, mustFailHandshakePromiseIfResumeClientTrustedThrows, mustFailHandshakePromiseIfResumeServerTrustedThrows.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free