if (this.args.getActions().contains(AllArgs.ACTION_SECURITY_PRINT)) {
final String sectionTitle = "ACTION: SECURITY PRINT";
CommonPrint.printDebugSection(this.print, sectionTitle);
final SecurityPrinter sp =
new SecurityPrinter(this.x509Used,
this.trustedCertDirs);
sp.print(this.args.getCaHash(),
this.print.getInfoProxy(),
this.print.getDebugProxy());
CommonPrint.printDebugSectionEnd(this.print, sectionTitle);
}