testIsTLSv13Cipher() — netty Function Reference
Architecture documentation for the testIsTLSv13Cipher() function in SslUtilsTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fd555c44_923a_0763_aab6_d5a24450cd60["testIsTLSv13Cipher()"] 48820ee9_de8c_874d_12df_29f6fb10052e["SslUtilsTest"] fd555c44_923a_0763_aab6_d5a24450cd60 -->|defined in| 48820ee9_de8c_874d_12df_29f6fb10052e style fd555c44_923a_0763_aab6_d5a24450cd60 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/SslUtilsTest.java lines 77–85
@Test
public void testIsTLSv13Cipher() {
assertTrue(SslUtils.isTLSv13Cipher("TLS_AES_128_GCM_SHA256"));
assertTrue(SslUtils.isTLSv13Cipher("TLS_AES_256_GCM_SHA384"));
assertTrue(SslUtils.isTLSv13Cipher("TLS_CHACHA20_POLY1305_SHA256"));
assertTrue(SslUtils.isTLSv13Cipher("TLS_AES_128_CCM_SHA256"));
assertTrue(SslUtils.isTLSv13Cipher("TLS_AES_128_CCM_8_SHA256"));
assertFalse(SslUtils.isTLSv13Cipher("TLS_DHE_RSA_WITH_AES_128_GCM_SHA256"));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testIsTLSv13Cipher() do?
testIsTLSv13Cipher() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SslUtilsTest.java.
Where is testIsTLSv13Cipher() defined?
testIsTLSv13Cipher() is defined in handler/src/test/java/io/netty/handler/ssl/SslUtilsTest.java at line 77.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free