mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
33 lines
799 B
Go
33 lines
799 B
Go
package api
|
|
|
|
import (
|
|
"encoding/pem"
|
|
"net/http"
|
|
|
|
"github.com/smallstep/certificates/api/render"
|
|
)
|
|
|
|
// CRL is an HTTP handler that returns the current CRL in DER or PEM format
|
|
func CRL(w http.ResponseWriter, r *http.Request) {
|
|
crlBytes, err := mustAuthority(r.Context()).GetCertificateRevocationList()
|
|
if err != nil {
|
|
render.Error(w, err)
|
|
return
|
|
}
|
|
|
|
_, formatAsPEM := r.URL.Query()["pem"]
|
|
if formatAsPEM {
|
|
w.Header().Add("Content-Type", "application/x-pem-file")
|
|
w.Header().Add("Content-Disposition", "attachment; filename=\"crl.pem\"")
|
|
|
|
_ = pem.Encode(w, &pem.Block{
|
|
Type: "X509 CRL",
|
|
Bytes: crlBytes,
|
|
})
|
|
} else {
|
|
w.Header().Add("Content-Type", "application/pkix-crl")
|
|
w.Header().Add("Content-Disposition", "attachment; filename=\"crl.der\"")
|
|
w.Write(crlBytes)
|
|
}
|
|
}
|