Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

│  ├── engine/
│  ├── server/
│  └── transmission/
└── certs/
    ├── engine/
    ├── server/
    └── transmission/

OR

chariotcerts/

├── rootCA/

│  ├── engineclientCA/
│  ├── serverCA/
│  └── transmissionclientCA/
└── certs/
    ├── engineclientCA/
    ├── serverCA/
    └── transmissionclientCA/


When creating a certificate hierarchy, the Root CA is the highest level of authority in the certificate hierarchy, and is responsible for issuing CA certificates to lower-level CAs, such as the Server CA and Client CAs. When the Root CA issues a CA certificate to a lower-level CA, it signs the certificate with its private key, which allows clients to verify the authenticity of the CA certificate using the Root CA's public key.

...