The supported ciphers for Java Runtime Environment (JRE) versions 1.7.0 and 1.8.0 can be found in the official Oracle documentation
JRE 1.7.0 - The list of supported ciphers can be found in the Oracle documentation at:
http://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#SupportedCipherSuitesJRE 1.8.0 - The list of supported ciphers can be found in the Oracle documentation at:
https://docs.oracle.com/javase/8/docs/technotes/guides/security/StandardNames.htmlAdditionally, this information is documented in the AMX Documentation, and linked to the Oracle official documentation
https://docs.tibco.com/pub/amsg/3.4.1/doc/html/GUID-0FC0342E-2F11-42BF-89D9-98EC9C7F00AB.htmlJava Code to List Ciphers:
To assist users in listing the ciphers used by the JVM, we provide the following Java code, please refer attached Ciphers.java:
1, Compile the code using the following command:
javac Ciphers.java
2, Execute the compiled code with the JRE configured to AMX/BPM using the command:
java Ciphers
This will list the supported ciphers supported for JRE.