Skip to content
Guides

Get Trusted Certificates List

The ComPDFKit SDK supports retrieving a list of currently trusted digital certificates. You can use the following API to obtain the list of certificates that are trusted by the application.

java
List<X509Certificate> list = CPDFX509.getTrustedCertificates(getContext());
kotlin
var list = CPDFX509.getTrustedCertificates(getContext());