How to Find all the SSL certs on a give host Cent OS

Hi
I am trying to find all the ssl certs installed/located on cent os Host ,
Please help .

/etc/pki/CA/openssl.cnf should tell you the certificates installed. Check for the "certificate" option in that file.

Also, you can run the following command:

find /etc/pki \( -name "*.crt" -o -name "*.key" -o -name "*.pem" \)