I'm writing a SOAP client application on Ubuntu using OpenSSL and C++. I am having trouble getting my code to validate the server certificate even though I know has a valid certificate.
Just to make sure I would like to check that it's the case and apparently PEM files are used to list valid certificates.
Can anyone tell me where these files reside on my Ubuntu 12.04 installation? I have the ca-certificates package installed on my machine, so these files must be there somewhere?
find / -name "*.pem"– sondra.kinsey Jun 22 '17 at 14:27finding upwards from/without usingsudowill generate a lot of errors for directories that the user has no access to. Usingsudo(or redirecting by adding2> /dev/nullkeeps the output clean. – Mausy5043 Jun 24 '17 at 10:51