Extract cert from PKCS#12 openssl

Split .p12 into separate cert and key PEM files

openssl pkcs12 -in bundle.p12 -nokeys -out cert.pem && openssl pkcs12 -in bundle.p12 -nocerts -nodes -out key.pem
more openssl all 27 commands →