assertEnabledProtocolsAndCipherSuites() — netty Function Reference
Architecture documentation for the assertEnabledProtocolsAndCipherSuites() function in SSLEngineTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fc2fce7a_e908_62bc_a899_8bedf99c4e4e["assertEnabledProtocolsAndCipherSuites()"] 9150c92a_2afc_b83a_c3bf_86dfac6e9d9b["SSLEngineTest"] fc2fce7a_e908_62bc_a899_8bedf99c4e4e -->|defined in| 9150c92a_2afc_b83a_c3bf_86dfac6e9d9b a20135b0_7084_04eb_4dee_f066493b6631["testEnabledProtocolsAndCiphers()"] a20135b0_7084_04eb_4dee_f066493b6631 -->|calls| fc2fce7a_e908_62bc_a899_8bedf99c4e4e b5886ee3_acb8_ccff_3cb4_be2aec78ec9e["assertArrayContains()"] fc2fce7a_e908_62bc_a899_8bedf99c4e4e -->|calls| b5886ee3_acb8_ccff_3cb4_be2aec78ec9e style fc2fce7a_e908_62bc_a899_8bedf99c4e4e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java lines 4503–4509
private static void assertEnabledProtocolsAndCipherSuites(SSLEngine engine) {
String protocol = engine.getSession().getProtocol();
String cipherSuite = engine.getSession().getCipherSuite();
assertArrayContains(protocol, engine.getEnabledProtocols());
assertArrayContains(cipherSuite, engine.getEnabledCipherSuites());
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does assertEnabledProtocolsAndCipherSuites() do?
assertEnabledProtocolsAndCipherSuites() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java.
Where is assertEnabledProtocolsAndCipherSuites() defined?
assertEnabledProtocolsAndCipherSuites() is defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java at line 4503.
What does assertEnabledProtocolsAndCipherSuites() call?
assertEnabledProtocolsAndCipherSuites() calls 1 function(s): assertArrayContains.
What calls assertEnabledProtocolsAndCipherSuites()?
assertEnabledProtocolsAndCipherSuites() is called by 1 function(s): testEnabledProtocolsAndCiphers.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free