Извлечь сертификат из PKCS#12 openssl

Разделить .p12 на отдельные PEM файлы сертификата и ключа

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