公告
财富商城
积分规则
提问
发文
2019-01-04 04:55发布
姐就是有狂的资本
Possible Duplicate: How to get .pem file from .key and .crt files?
How can I convert .crt to .pem?
I found the OpenSSL answer given above didn't work for me, but the following did, working with a CRT file sourced from windows.
openssl x509 -inform DER -in yourdownloaded.crt -out outcert.pem -text
You can do this conversion with the OpenSSL library
http://www.openssl.org/
Windows binaries can be found here:
http://www.slproweb.com/products/Win32OpenSSL.html
Once you have the library installed, the command you need to issue is:
openssl x509 -in mycert.crt -out mycert.pem -outform PEM
最多设置5个标签!
I found the OpenSSL answer given above didn't work for me, but the following did, working with a CRT file sourced from windows.
You can do this conversion with the OpenSSL library
http://www.openssl.org/
Windows binaries can be found here:
http://www.slproweb.com/products/Win32OpenSSL.html
Once you have the library installed, the command you need to issue is: