Certificate Signing Request Decoder
Decode a PEM-encoded CSR and show subject, SANs, public key, and signature algorithm. Runs entirely in your browser.
Paste CSR (PEM format)
โ
Notes
- Uses WebCrypto
crypto.subtle.importKeyto parse public key + custom DER parser for subject/SANs. - This is a best-effort decoder โ for exact output always use OpenSSL:
openssl req -in csr.pem -text -noout.