Burp-Suite's http://burp/cert:8080
web-interface for downloading the CA Certificate only provides a .der
encoded certificate, but for a particular use-case scenario I require a PKCS#12 .pfx
/.p12
.
I can find a lot of information regarding the conversion from .der
to .pem
and also the conversion from .pem
to .pfx
/.p12
, but nothing for converting directly from .der
to .pfx
/.p12
:
.der
>.pem
openssl x509 -inform der -in certificate.der -out certificate.pem
.pem
>.pfx
/.p12
openssl pkcs12 -export -in certificate.pem -out certificate.p12
- Can I convert directly from
.der
to.pfx
/.p12
? - Do I need a
.key
(not provided viahttp://burp/cert:8080
) in order to do the conversion? - Will the
.pfx
/.p12
even be of any use to me (and Burp-Suite) without the.key
rolled in?