Convert PFX/PKCS12 files to PEM format (certificate + private key)
PFX (also known as PKCS#12) is a binary archive format that stores a server certificate, intermediate certificates, and the private key in a single encrypted file. PEM format uses Base64 ASCII encoding with header and footer lines, making it the standard format for Apache, Nginx, and most Linux-based web servers. Our converter extracts certificate metadata — including subject, issuer, validity dates, SAN entries, and fingerprint — alongside the PEM-encoded output.
Input: PKCS#12 (.pfx, .p12) files with optional password protection
Output: PEM files for certificate, private key, and chain
Security: Password-protected PFX handling with secure key extraction
Compatibility: Output compatible with Nginx, Apache, HAProxy