Like this tool?
Install byteflow.tools for faster startup and offline tool access.
Install guideLike this tool?
Install byteflow.tools for faster startup and offline tool access.
Install guideParse DER, PEM, Base64, or hex encoded ASN.1 data locally and inspect TLV structure, tag names, lengths, OIDs, strings, and nested containers.
Inspect ASN.1 DER data locally by parsing TLV structure from PEM, Base64, or hex input, with safe limits for nested certificate, key, and protocol payload debugging.
It parses DER tag, length, and value records into a nested tree.
It identifies common universal tags such as SEQUENCE, SET, INTEGER, OBJECT IDENTIFIER, BIT STRING, OCTET STRING, and time/string types.
It previews OIDs, small integers, strings, and raw bytes so the structure can be reviewed without a full certificate stack.
It applies max node and depth limits to avoid browser lockups on malformed or oversized input.
DER hex
30 0D 02 01 05 06 08 2A 86 48 86 F7 0D 01 01
PEM block
-----BEGIN CERTIFICATE-----\n...\n-----END CERTIFICATE-----
Base64 DER
MIIB...
Tree node
SEQUENCE, offset 0, length 13, constructed container.
OID preview
OBJECT IDENTIFIER 1.2.840.113549.1.1
Truncation state
Tree truncated when max nodes or max depth is reached.
Odd number of hex digits
Remove stray characters or add the missing nibble before parsing.
BER indefinite length used
Convert to DER definite-length encoding for this inspector.
DER length exceeds available bytes
Check whether the input was truncated or copied with missing bytes.
Expecting certificate validation
Use a certificate validation workflow for trust, chain, revocation, and signature checks.
Very deep nested input freezes tools
Keep max depth and node limits enabled when inspecting untrusted payloads.
ASN.1/DER Inspector is most effective when it produces a focused, reproducible evidence bundle that can be handed to the next engineer without extra cleanup.
Does it validate certificate trust?
No. It parses ASN.1 DER structure only and does not verify chains or signatures.
Can I paste PEM?
Yes. PEM armor is stripped and the embedded Base64 DER is parsed locally.
Which encodings are supported?
Hex, Base64 DER, and PEM blocks are supported.
Why is BER indefinite length rejected?
The tool targets DER, which uses definite lengths for canonical encoding.
Can it decode every ASN.1 type?
It handles common universal tags and safely previews unknown tags for structural debugging.