خوب این میگه اول و آخر هر دو قسمت کد رو بخون اگه غیر کد استرینگ اضافه ای غیر کد بود مثل Proc-Type: 4,ENCRYPTED
یعنی خود فایل کی شما کد شده است باید خود فایل رو هم دیکد کنید
اینجا هم که شرح داده
It means that the Private Key is encrypted and you should decrypt it using 'openssl' utility.
Please do the following to test if your private key and certificate match :
It can be done using openssl. You must be logged in the server as root. The RSA private key and certificate text need to be saved to a text file.
The certificate can be tested running openssl using the following syntax:
# openssl rsa -modulus -noout -in /path/to/private.key.file | openssl md5
and
# openssl x509 -modulus -noout -in /path/to/certificate.file | openssl md5
The first command tests the RSA private key and the second command tests the certficate. The outputs of the both commands must be the same.
For example:
# openssl rsa -in key.pem -noout -modulus | openssl md5
b7e59a39c5bcac0ea70204f2a8fe88e8
# openssl x509 -in cert.pem -noout -modulus | openssl md5
b7e59a39c5bcac0ea70204f2a8fe88e8