👺How to convert PFX to CRT and KEY File on Windows Server
SSL Certificate Format
ใบรับรองความปลอดภัยทางอิเล็กทรอนิกส์บนมาตรฐาน SSL ( Security Socket Layer ) ที่ออกโดย CA ( Certificate Authority ) จะมีรูปแบบของ File Format แบ่งออกเป็น 2 ประเภท ได้แก่ Base64 ( ASCII ) และ Binary ดังนี้
Download
Get Start
ทำการ Extract Private Key จากไฟล์ PFX
openssl pkcs12 -in certificate.pfx -nocerts -out encrypted.key
ทำการ Extract Public SSL Certificate จากไฟล์ PFX
openssl pkcs12 -in certificate.pfx -clcerts -nokeys -out certificate.crt
ทำการ Decrypted Private Key จากไฟล์ Encrypted Private Key
openssl rsa -in encrypted.key -out decrypted.key
อ่านเพิ่มเติม : https://bit.ly/36aF6WG
Last updated
Was this helpful?