mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-16 09:27:17 +03:00
604 B
604 B
title | description | date | tags | ||
---|---|---|---|---|---|
Конвертация .pfx в .pem | Используя OpenSSL | 2023-04-12T11:45:00+05:00 |
|
Извлечение сертификата и ключа
openssl pkcs12 -in <tls>.pfx -out <tls>.pem -nodes
Извлечение сертификата
openssl pkcs12 -in <tls>.pfx -clcerts -nokeys -out <cert>.pem
Извлечение ключа
openssl pkcs12 -in <tls>.pfx -nocerts -out <key>.tmp.pem
Обеспароливание ключа
openssl rsa -in <key>.tmp.pem -out <key>.pem