Home / Function/ X509Bundle() — netty Function Reference

X509Bundle() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  ab9ec1fd_2f73_2cf5_a583_8e6ea7f0728f["X509Bundle()"]
  52390b39_f5c1_cc6d_e53c_96e2c2ffa126["X509Bundle"]
  ab9ec1fd_2f73_2cf5_a583_8e6ea7f0728f -->|defined in| 52390b39_f5c1_cc6d_e53c_96e2c2ffa126
  fb9f9d8a_dd4a_938c_8e46_e26b841fd26e["isCertificateAuthority()"]
  ab9ec1fd_2f73_2cf5_a583_8e6ea7f0728f -->|calls| fb9f9d8a_dd4a_938c_8e46_e26b841fd26e
  cdebcf8a_a27e_aee3_4be4_5e910ce566f3["isSelfSigned()"]
  ab9ec1fd_2f73_2cf5_a583_8e6ea7f0728f -->|calls| cdebcf8a_a27e_aee3_4be4_5e910ce566f3
  style ab9ec1fd_2f73_2cf5_a583_8e6ea7f0728f fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

pkitesting/src/main/java/io/netty/pkitesting/X509Bundle.java lines 63–73

    private X509Bundle(X509Certificate[] certPath, X509Certificate root, KeyPair keyPair) {
        requireNonNull(root, "root");
        requireNonNull(keyPair, "keyPair");
        if (certPath.length > 1 && certPath[certPath.length - 1].equals(root)) {
            this.certPath = Arrays.copyOf(certPath, certPath.length - 1);
        } else {
            this.certPath = certPath.clone();
        }
        this.root = root;
        this.keyPair = keyPair;
    }

Domain

Subdomains

Frequently Asked Questions

What does X509Bundle() do?
X509Bundle() is a function in the netty codebase, defined in pkitesting/src/main/java/io/netty/pkitesting/X509Bundle.java.
Where is X509Bundle() defined?
X509Bundle() is defined in pkitesting/src/main/java/io/netty/pkitesting/X509Bundle.java at line 63.
What does X509Bundle() call?
X509Bundle() calls 2 function(s): isCertificateAuthority, isSelfSigned.

Analyze Your Own Codebase

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

Try Supermodel Free