ciphers() — netty Function Reference
Architecture documentation for the ciphers() function in SSLEngineTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD e3b541e6_b593_4b1f_a637_da19020e73df["ciphers()"] d2876c5c_2c06_793b_51b3_1cbba809da1a["SSLEngineTestParam"] e3b541e6_b593_4b1f_a637_da19020e73df -->|defined in| d2876c5c_2c06_793b_51b3_1cbba809da1a e537ede1_7ab4_ad80_00a6_7027c25cf295["testSetSupportedCiphers()"] e537ede1_7ab4_ad80_00a6_7027c25cf295 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df 6ad1452e_858e_792d_4856_9ba9f6277be2["mySetupMutualAuth()"] 6ad1452e_858e_792d_4856_9ba9f6277be2 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df a47c51db_784f_37ec_acb1_136f0f6d6b46["mySetupClientHostnameValidation()"] a47c51db_784f_37ec_acb1_136f0f6d6b46 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df b43d4da2_10b1_b469_b24d_a84be34c5194["testSessionInvalidate()"] b43d4da2_10b1_b469_b24d_a84be34c5194 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df bfe6f0b3_5387_9664_b28e_4090d9fe2eca["clientInitiatedRenegotiationWithFatalAlertDoesNotInfiniteLoopServer()"] bfe6f0b3_5387_9664_b28e_4090d9fe2eca -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df e1532bb8_f828_8062_260d_c0dd59c2128d["testEnablingAnAlreadyDisabledSslProtocol()"] e1532bb8_f828_8062_260d_c0dd59c2128d -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df 7338e064_e0a3_a619_2b64_27a2587698a9["setupHandlers()"] 7338e064_e0a3_a619_2b64_27a2587698a9 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df c21a4979_c748_9807_e12f_8ae876604790["testMutualAuthSameCertChain()"] c21a4979_c748_9807_e12f_8ae876604790 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df e2e50c11_3d50_49ea_6ae2_fe300aceb7e7["testUnwrapBehavior()"] e2e50c11_3d50_49ea_6ae2_fe300aceb7e7 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df ee8aab19_172a_3808_dcd3_fafb773c3be7["testHandshakeCompletesWithNonContiguousProtocolsTLSv1_2CipherOnly()"] ee8aab19_172a_3808_dcd3_fafb773c3be7 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df 22054a12_fd53_a771_de5c_0b8aa8c31cd1["testHandshakeCompletesWithoutFilteringSupportedCipher()"] 22054a12_fd53_a771_de5c_0b8aa8c31cd1 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df 52fddb55_d5b7_b4de_fce5_ae7da59a403d["testPacketBufferSizeLimit()"] 52fddb55_d5b7_b4de_fce5_ae7da59a403d -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df 47aea7a1_6627_5731_e86b_000f29308435["testSSLEngineUnwrapNoSslRecord()"] 47aea7a1_6627_5731_e86b_000f29308435 -->|calls| e3b541e6_b593_4b1f_a637_da19020e73df style e3b541e6_b593_4b1f_a637_da19020e73df fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java lines 280–282
final List<String> ciphers() {
return Collections.singletonList(protocolCipherCombo.cipher);
}
Domain
Subdomains
Called By
- buildClientSslContextForMTLS()
- buildServerSslContextForMTLS()
- clientInitiatedRenegotiationWithFatalAlertDoesNotInfiniteLoopServer()
- mustNotCallResumeWhenClientAuthIsOptionalAndNoClientCertIsProvided()
- mySetupClientHostnameValidation()
- mySetupMutualAuth()
- setupHandlers()
- testBeginHandshakeAfterEngineClosed()
- testBeginHandshakeCloseOutbound()
- testBufferUnderFlow()
- testBufferUnderflowPacketSizeDependency()
- testCloseInboundAfterBeginHandshake()
- testDefaultProtocolsIncludeTLSv13()
- testDisableProtocols()
- testEnabledProtocolsAndCiphers()
- testEnablingAnAlreadyDisabledSslProtocol()
- testExtraDataInLastSrcBufferForClientUnwrap()
- testGetCiphersuite()
- testHandshakeCompletesWithNonContiguousProtocolsTLSv1_2CipherOnly()
- testHandshakeCompletesWithoutFilteringSupportedCipher()
- testHandshakeSession()
- testInvalidCipher()
- testInvalidSNIIsIgnoredAndNotThrow()
- testMasterKeyLogging()
- testMultipleRecordsInOneBufferBiggerThenPacketBufferSize()
- testMultipleRecordsInOneBufferWithNonZeroPosition()
- testMutualAuthSameCertChain()
- testPacketBufferSizeLimit()
- testSSLEngineUnwrapNoSslRecord()
- testSessionAfterHandshake0()
- testSessionBindingEvent()
- testSessionCache()
- testSessionCacheSize()
- testSessionCacheTimeout()
- testSessionInvalidate()
- testSessionLocalWhenNonMutual()
- testSetSupportedCiphers()
- testSupportedSignatureAlgorithms()
- testTLSv13DisabledIfNoValidCipherSuiteConfigured()
- testUnwrapBehavior()
- testWrapAfterCloseOutbound()
- testWrapDoesNotZeroOutSrc()
Source
Frequently Asked Questions
What does ciphers() do?
ciphers() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java.
Where is ciphers() defined?
ciphers() is defined in handler/src/test/java/io/netty/handler/ssl/SSLEngineTest.java at line 280.
What calls ciphers()?
ciphers() is called by 42 function(s): buildClientSslContextForMTLS, buildServerSslContextForMTLS, clientInitiatedRenegotiationWithFatalAlertDoesNotInfiniteLoopServer, mustNotCallResumeWhenClientAuthIsOptionalAndNoClientCertIsProvided, mySetupClientHostnameValidation, mySetupMutualAuth, setupHandlers, testBeginHandshakeAfterEngineClosed, and 34 more.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free