diff --git a/content/en/certificates.md b/content/en/certificates.md index f868233ce..758cd5bf8 100644 --- a/content/en/certificates.md +++ b/content/en/certificates.md @@ -2,7 +2,7 @@ title: Chains of Trust linkTitle: Chains of Trust (Root and Intermediate Certificates) slug: certificates -lastmod: 2025-11-20 +lastmod: 2025-12-19 show_lastmod: 1 --- @@ -68,6 +68,7 @@ All intermediate certificate Subjects have a Country field of `C = US`. * CA details: [crt.sh](https://crt.sh/?caid=295813), [issued certs](https://crt.sh/?Identity=%25&iCAID=295813) * Certificate details (signed by ISRG Root X2): [crt.sh](https://crt.sh/?id=12396132900), [der](/certs/2024/e7.der), [pem](/certs/2024/e7.pem), [txt](/certs/2024/e7.txt) * Certificate details (cross-signed by ISRG Root X1): [crt.sh](https://crt.sh/?id=12396132895), [der](/certs/2024/e7-cross.der), [pem](/certs/2024/e7-cross.pem), [txt](/certs/2024/e7-cross.txt) +
Revocation details (sharded CRL){{< crl issuer="e7" count="128" >}}
* **Let's Encrypt E8** * Subject: `O = Let's Encrypt, CN = E8` * Key type: `ECDSA P-384` diff --git a/themes/le-2025/layouts/shortcodes/crl.html b/themes/le-2025/layouts/shortcodes/crl.html new file mode 100644 index 000000000..d6d1fd9e1 --- /dev/null +++ b/themes/le-2025/layouts/shortcodes/crl.html @@ -0,0 +1,7 @@ +{{ $issuer := .Get "issuer" }} + +{{ range seq 128 }} + + CRL {{ . }}
+ +{{ end }} \ No newline at end of file