enabling-cipher-suites.asciidoc 1.4 KB

1234567891011121314151617181920212223242526
  1. [role="xpack"]
  2. [[ciphers]]
  3. === Enabling Cipher Suites for Stronger Encryption
  4. The TLS and SSL protocols use a cipher suite that determines the strength of
  5. encryption used to protect the data. You may want to increase the strength of
  6. encryption used when using a Oracle JVM; the IcedTea OpenJDK ships without these
  7. restrictions in place. This step is not required to successfully use encrypted
  8. communication.
  9. The _Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy
  10. Files_ enable the use of additional cipher suites for Java in a separate JAR file
  11. that you need to add to your Java installation. You can download this JAR file
  12. from Oracle's http://www.oracle.com/technetwork/java/javase/downloads/index.html[download page].
  13. The _JCE Unlimited Strength Jurisdiction Policy Files`_ are required for
  14. encryption with key lengths greater than 128 bits, such as 256-bit AES encryption.
  15. After installation, all cipher suites in the JCE are available for use but requires
  16. configuration in order to use them. To enable the use of stronger cipher suites
  17. with {es} {security-features}, configure the `cipher_suites` parameter. See the
  18. {ref}/security-settings.html#ssl-tls-settings[Configuration Parameters for TLS/SSL]
  19. section of this document for specific parameter information.
  20. NOTE: The _JCE Unlimited Strength Jurisdiction Policy Files_ must be installed
  21. on all nodes in the cluster to establish an improved level of encryption
  22. strength.