Home / Function/ useFallbackCiphersIfDefaultIsEmpty() — netty Function Reference

useFallbackCiphersIfDefaultIsEmpty() — netty Function Reference

Architecture documentation for the useFallbackCiphersIfDefaultIsEmpty() function in SslUtils.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  3d951967_9cc0_c61f_17d3_234c67c81d8a["useFallbackCiphersIfDefaultIsEmpty()"]
  8b8e2625_56a3_eef0_1cb3_fa21bb9b476e["SslUtils"]
  3d951967_9cc0_c61f_17d3_234c67c81d8a -->|defined in| 8b8e2625_56a3_eef0_1cb3_fa21bb9b476e
  style 3d951967_9cc0_c61f_17d3_234c67c81d8a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/SslUtils.java lines 315–324

    static void useFallbackCiphersIfDefaultIsEmpty(List<String> defaultCiphers, Iterable<String> fallbackCiphers) {
        if (defaultCiphers.isEmpty()) {
            for (String cipher : fallbackCiphers) {
                if (cipher.startsWith("SSL_") || cipher.contains("_RC4_")) {
                    continue;
                }
                defaultCiphers.add(cipher);
            }
        }
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free