Home > front end >  I can't see certificate chain into pem certificate file
I can't see certificate chain into pem certificate file

Time:10-13

I have a certificate file called customer_pem.cert . This file has PEM format. It contains three ---BEGIN CERTIFICATE-- sections (end user certificate, CA intermediate certificate and CA certificate). I'm using Windows 10. When I make double click over the file and I go to Certification Path section, I don't see the see the complete hierarchy or certificate chain. I just see the end user certificate. I don't see the CA and CA intermediate certificates.

The question is why I can't see them?

CodePudding user response:

Windows has no default viewer for .pem files. You need to split the file in separate files with the extension .cer.

  • Related