testWrapWithDifferentSizesTLSv1_1() — netty Function Reference
Architecture documentation for the testWrapWithDifferentSizesTLSv1_1() function in OpenSslEngineTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD c1c5a90c_711b_0253_477e_5b809d9375fd["testWrapWithDifferentSizesTLSv1_1()"] 08957e63_66e1_e2b4_c8aa_4f617c598a7d["OpenSslEngineTest"] c1c5a90c_711b_0253_477e_5b809d9375fd -->|defined in| 08957e63_66e1_e2b4_c8aa_4f617c598a7d f490308d_2252_4fa8_afe5_54785f847646["testWrapWithDifferentSizes()"] c1c5a90c_711b_0253_477e_5b809d9375fd -->|calls| f490308d_2252_4fa8_afe5_54785f847646 style c1c5a90c_711b_0253_477e_5b809d9375fd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/OpenSslEngineTest.java lines 584–612
@MethodSource("newTestParams")
@ParameterizedTest
public void testWrapWithDifferentSizesTLSv1_1(SSLEngineTestParam param) throws Exception {
clientSslCtx = wrapContext(param, SslContextBuilder.forClient()
.trustManager(InsecureTrustManagerFactory.INSTANCE)
.sslProvider(sslClientProvider())
.build());
SelfSignedCertificate ssc = CachedSelfSignedCertificate.getCachedCertificate();
serverSslCtx = wrapContext(param, SslContextBuilder.forServer(ssc.certificate(), ssc.privateKey())
.sslProvider(sslServerProvider())
.option(OpenSslContextOption.TMP_DH_KEYLENGTH, 2048)
.build());
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "ECDHE-RSA-AES256-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "AES256-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "CAMELLIA256-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "ECDHE-RSA-AES256-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "SEED-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "CAMELLIA128-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "IDEA-CBC-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "AECDH-RC4-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "ADH-RC4-MD5");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "RC4-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "ECDHE-RSA-DES-CBC3-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "EDH-RSA-DES-CBC3-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "AECDH-DES-CBC3-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "ADH-DES-CBC3-SHA");
testWrapWithDifferentSizes(param, SslProtocols.TLS_v1_1, "DES-CBC3-SHA");
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testWrapWithDifferentSizesTLSv1_1() do?
testWrapWithDifferentSizesTLSv1_1() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/OpenSslEngineTest.java.
Where is testWrapWithDifferentSizesTLSv1_1() defined?
testWrapWithDifferentSizesTLSv1_1() is defined in handler/src/test/java/io/netty/handler/ssl/OpenSslEngineTest.java at line 584.
What does testWrapWithDifferentSizesTLSv1_1() call?
testWrapWithDifferentSizesTLSv1_1() calls 1 function(s): testWrapWithDifferentSizes.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free