-
Notifications
You must be signed in to change notification settings - Fork 728
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Security Manager disables ECDH/ECDHE cipher suites #18071
Comments
The system property |
This was referenced Sep 5, 2023
@keithc-ca Thank you. |
I'll take care of that. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Enabling Security Manager with a custom policy file disables ECDH/ECDHE cipher suites with OpenJ9 v0.40 Java 11.0.20.1.
It did not happen with OpenJ9 v0.38 Java 11.0.19.
[ Steps to reproduce ]
-Djava.security.manager
. It lists the supported cipher suites.[ Result ]
java PrintCipherSuites
prints 49 cipher suitesjava -Djava.security.manager PrintCipherSuites
prints only 23 cipher suitesTLS_ECDH_
andTLS_ECDHE_
cipher suites.It was introduced by ibmruntimes/openj9-openjdk-jdk11#650, which calls
System.getProperty("os.name")
.The text was updated successfully, but these errors were encountered: