SSL .pfx Dosyasınında Sertifika Ayrıştırma
Pfx dosyadan key ve sertifikayı ayırmak için openssl ile aşağıdaki komutları kullanabilirsiniz. Key dosyasını dışarı almak: openssl pkcs12 -in [yourfile.pfx] -nocerts -out [drlive.key] Sertifika dosyasını export etme: openssl pkcs12 -in [yourfile.pfx] -clcerts -nokeys -out [drlive.crt] Bazı sistemlerde key dosyasını şifreli olarak kabul etmez o gibi durumlarda key dosyasını decypt etmek gerekir Bunun için aşağıdaki komutu […]
Read More →