michael-o commented on code in PR #674: URL: https://github.com/apache/tomcat/pull/674#discussion_r1369211534
########## test/org/apache/tomcat/util/net/jsse/TestPEMFile.java: ########## @@ -118,4 +127,17 @@ private String getPath(String file) throws IOException { return f.getCanonicalPath(); } + + + @Test + public void testListSecretKeyFactories() { + for (Provider provider : Security.getProviders()) { + System.out.println( provider ); + for (Provider.Service service : provider.getServices()) { + if ("Cipher".equals( service.getType())) { + System.out.println( service.getAlgorithm() ); Review Comment: Are the spaces on purpose? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org