PKCS#7 / P7B Certificate Bundle Inspector
Decode a .p7b certificate bundle structure.
About this tool
PKCS#7 (also seen as .p7b or .p7c files) is a container that bundles certificates โ commonly a full certificate chain โ and optionally signer information. This tool decodes the PEM-wrapped structure into its ASN.1 tree so you can see which certificates and OIDs it carries.
Useful when a CA hands you a .p7b and you need to understand or split its contents. Parsing runs entirely in your browser.
Like everything on encrypt.tools, this runs entirely in your browser โ nothing you enter is transmitted or stored.
Frequently asked questions about PKCS#7 Inspector
What is a .p7b file?+
A PKCS#7 file is a container that holds one or more certificates โ typically a certificate chain โ without private keys. Windows and Java tools often export chains in this format.
Can I extract individual certificates from it?+
This tool shows the structure and the certificates it contains. To split a .p7b into separate PEM certificates for a web server, use OpenSSL's pkcs7 command; this inspector helps you verify what's inside first.
Does PKCS#7 contain private keys?+
No โ PKCS#7 carries certificates and signatures only. Private keys travel in PKCS#12 (.pfx/.p12) files, which are a different, password-protected format.
Related tools
PEM โ DER Converter
Convert between ASCII-armored PEM and binary DER
ASN.1 ยท DERASN.1 Parser
Decode DER hex or PEM into a readable ASN.1 tree
X.509 ยท TLSX.509 Certificate Parser
Decode a PEM certificate into readable fields
CSR ยท PKCS#10CSR Decoder
Inspect the subject and key inside a PKCS#10 CSR