From asi
Builds two-tier PKI hierarchy (Root CA + Intermediate CA) using OpenSSL and Python cryptography library; configures CRLs, OCSP responders, certificate issuance, policies. For secure PKI setups.
How this skill is triggered — by the user, by Claude, or both
Slash command
/asi:configuring-certificate-authority-with-opensslThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A Certificate Authority (CA) is the trust anchor in a PKI hierarchy, responsible for issuing, signing, and revoking digital certificates. This skill covers building a two-tier CA hierarchy (Root CA + Intermediate CA) using OpenSSL and the Python cryptography library, including CRL distribution, OCSP responder configuration, and certificate policy management.
A Certificate Authority (CA) is the trust anchor in a PKI hierarchy, responsible for issuing, signing, and revoking digital certificates. This skill covers building a two-tier CA hierarchy (Root CA + Intermediate CA) using OpenSSL and the Python cryptography library, including CRL distribution, OCSP responder configuration, and certificate policy management.
Root CA (offline, air-gapped)
|
+-- Intermediate CA (online, operational)
|
+-- Server Certificates
+-- Client Certificates
+-- Code Signing Certificates
| Extension | Purpose | Critical |
|---|---|---|
| basicConstraints | CA:TRUE/FALSE, pathLenConstraint | Yes |
| keyUsage | keyCertSign, cRLSign, digitalSignature | Yes |
| extendedKeyUsage | serverAuth, clientAuth, codeSigning | No |
| subjectKeyIdentifier | Hash of public key | No |
| authorityKeyIdentifier | Issuer's key identifier | No |
| crlDistributionPoints | URL to CRL | No |
| authorityInfoAccess | OCSP responder URL | No |
npx claudepluginhub plurigrid/asi --plugin asiBuilds a two-tier PKI hierarchy (Root CA + Intermediate CA) with OpenSSL and Python, including CRL distribution, OCSP responder configuration, and certificate policy management.
Builds a two-tier Certificate Authority hierarchy (Root + Intermediate) using OpenSSL and Python cryptography. Includes CRL distribution, OCSP responder config, and certificate policy management.
Builds two-tier PKI CA hierarchy (root + intermediate) using OpenSSL and Python cryptography library, with CRL, OCSP, and certificate policies. For secure certificate management.