Home / Function/ supportedClientKeyTypes() — netty Function Reference

supportedClientKeyTypes() — netty Function Reference

Architecture documentation for the supportedClientKeyTypes() function in BoringSSLCertificateCallback.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  a44defb1_f866_cc20_d5c6_0d9d7dd5d76d["supportedClientKeyTypes()"]
  0fd0c2dd_82bc_1c80_9d13_1c23c790e939["BoringSSLCertificateCallback"]
  a44defb1_f866_cc20_d5c6_0d9d7dd5d76d -->|defined in| 0fd0c2dd_82bc_1c80_9d13_1c23c790e939
  1ae3bf29_f26e_95be_f9d3_d5dc2a258dbf["handle()"]
  1ae3bf29_f26e_95be_f9d3_d5dc2a258dbf -->|calls| a44defb1_f866_cc20_d5c6_0d9d7dd5d76d
  style a44defb1_f866_cc20_d5c6_0d9d7dd5d76d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/BoringSSLCertificateCallback.java lines 256–271

    private Set<String> supportedClientKeyTypes(byte @Nullable[] clientCertificateTypes) {
        if (clientCertificateTypes == null) {
            // Try all of the supported key types.
            return clientKeyTypes;
        }
        Set<String> result = new HashSet<>(clientCertificateTypes.length);
        for (byte keyTypeCode : clientCertificateTypes) {
            String keyType = clientKeyType(keyTypeCode);
            if (keyType == null) {
                // Unsupported client key type -- ignore
                continue;
            }
            result.add(keyType);
        }
        return result;
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does supportedClientKeyTypes() do?
supportedClientKeyTypes() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/BoringSSLCertificateCallback.java.
Where is supportedClientKeyTypes() defined?
supportedClientKeyTypes() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/BoringSSLCertificateCallback.java at line 256.
What calls supportedClientKeyTypes()?
supportedClientKeyTypes() is called by 1 function(s): handle.

Analyze Your Own Codebase

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

Try Supermodel Free