mirror of
https://github.com/fruworg/fruworg.github.io.git
synced 2024-11-17 01:47:18 +03:00
600 B
600 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.key
Обеспароливание ключа
openssl rsa -in <key>.tmp.key -out <key>.key