https://devtools.solutions/tools/security/pem-parse.html

Parse PEM

Parse a PEM-encoded certificate, key, or CSR to inspect its structure and fields.

PEM Parser


    

Example input/output

Input: -----BEGIN CERTIFICATE-----
MIID...-----END CERTIFICATE-----

Output: Type: Certificate / Subject: CN=example.com / Key Type: RSA 2048

How it works

This tool base64-decodes the PEM payload and parses the resulting DER-encoded ASN.1 structure using a JavaScript parser. It identifies the PEM type from the header and decodes fields such as subject, issuer, public key algorithm, and key size. Processing runs in your browser.

Common use cases

Related tools