PFX (PKCS#12), sertifika ve özel anahtarı tek şifreli dosyada birleştirir; Windows/IIS ve birçok uygulama bu formatı kullanır.
PEM'den PFX'e
openssl pkcs12 -export -out cert.pfx -inkey domain.key -in domain.crt -certfile ca-bundle.crt
PFX'ten PEM'e
openssl pkcs12 -in cert.pfx -out cert.pem -nodes
Sertifika işlemleriniz için SSL sayfamıza, CSR için CSR aracımıza bakın.