इस टूल में कोई समस्या है?

«PEM सर्टिफिकेट डिकोडर ऑनलाइन» के बारे में

यह टूल PEM-एनकोडेड X.509 प्रमाण पत्रों को डिकोड करता है और संरचित सामग्री प्रदर्शित करता है।

TLS त्रुटियों का निवारण करते समय एक का दृश्य निरीक्षण मदद करता है।

सभी डिकोडिंग आपके ब्राउज़र में स्थानीय रूप से होती है।

इस टूल का उपयोग कैसे करें

How to summarise a PEM certificate blob

  1. Paste the PEM

    Drop the entire `-----BEGIN CERTIFICATE-----` … `-----END CERTIFICATE-----` block (or a bundle with multiple blocks) into the "PEM" field. Leading/trailing whitespace is OK; the tool counts blocks by header occurrences.

  2. Press Run

    Result returns `certificateCount` (how many CERTIFICATE blocks were found) and `firstByteLengthBase64` (length of the base64 body of the first block — a rough size proxy for the DER bytes inside).

  3. What it does NOT decode

    This is a fingerprint check, not a full ASN.1 parser. It does NOT extract subject, issuer, SAN, validity dates, key algorithm, or fingerprint. For that, run `openssl x509 -in cert.pem -text -noout` locally.

  4. Bundle vs single

    A certificateCount of 2-3 is normal for a fullchain (leaf + intermediates). A count of 1 is just the leaf — you may need to bundle intermediates for clients that don't fetch AIA on their own.