The ComPDF 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());
1
kotlin
var list = CPDFX509.getTrustedCertificates(getContext());