Home / Function/ isCipherSuiteAvailable() — netty Function Reference

isCipherSuiteAvailable() — netty Function Reference

Architecture documentation for the isCipherSuiteAvailable() function in OpenSsl.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  87a6d8d4_985c_c171_bd71_adbdb28935a6["isCipherSuiteAvailable()"]
  ed038636_6deb_9fdb_0fd6_26635e25e0e6["OpenSsl"]
  87a6d8d4_985c_c171_bd71_adbdb28935a6 -->|defined in| ed038636_6deb_9fdb_0fd6_26635e25e0e6
  style 87a6d8d4_985c_c171_bd71_adbdb28935a6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/OpenSsl.java lines 702–708

    public static boolean isCipherSuiteAvailable(String cipherSuite) {
        String converted = CipherSuiteConverter.toOpenSsl(cipherSuite, IS_BORINGSSL);
        if (converted != null) {
            cipherSuite = converted;
        }
        return AVAILABLE_OPENSSL_CIPHER_SUITES.contains(cipherSuite);
    }

Domain

Subdomains

Frequently Asked Questions

What does isCipherSuiteAvailable() do?
isCipherSuiteAvailable() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/OpenSsl.java.
Where is isCipherSuiteAvailable() defined?
isCipherSuiteAvailable() is defined in handler/src/main/java/io/netty/handler/ssl/OpenSsl.java at line 702.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free