You can use the adobe-truststore-client.jar packaged in the SDK to do
this.I am sharing a code snippet to use when this is being done using a
custom dsc in the LiveCycle container. CredentialServiceClient cl = new
CredentialServiceClient(ServiceClientFactory.createInstance());
cl.importCredential("Cred Alias", new com.adobe.idp.Document(new
File("p12 file path"),false), "password", new
String[]{"truststore.usage.type.sign"});If you were importing a
credential for reader extension the last argume...