Good ciphers in OpenJDK 10

Posted on December 11, 2018 in Java • 1 min read

Until recently, I didn’t know the list of supported Cipher Suites in OpenJDK is widely different between JDK versions. I used getSupportedCipherSuites() on OpenJDK 10 to get the following list, and check the strength of encryption.

My criteria is:

  1. At least 128bit.
  2. No NULL ciphers.
  3. No anonymous auth ciphers …

Continue reading