-
Notifications
You must be signed in to change notification settings - Fork 54
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
Use TLSv1.3 as default for Cross Site #1676
Conversation
Can't we just set |
Sure; I had the idea that we want to force TLS 1.3 everywhere. |
I created a small Java SSL client: public class SSLTool
{
public static void main( String[] args ) throws IOException {
SslContextFactory factory = new SslContextFactory();
factory
.keyStoreFileName("server.pfx")
.keyStorePassword("secret")
.keyAlias("server")
.trustStoreFileName("ca.pfx")
.trustStorePassword("secret")
.provider("openssl");
SSLContext context = factory.getContext();
try (SSLSocket socket = (SSLSocket) context.getSocketFactory().createSocket("localhost", 12001)) {
SSLSession session = socket.getSession();
System.out.printf("Provider = %s%n", context.getProvider().getName());
System.out.printf("Protocol = %s%n", session.getProtocol());
System.out.printf("Cipher suite = %s%n", session.getCipherSuite());
}
}
} And both SunJSSE and openssl providers return the following:
|
keeping this on hold until we have a server image with JGRP-2638 |
@pruivo Is this included in 14.0.0.Final? |
@ryanemerson no, it isn't. Part of the fix is in JGroups code and we didn't upgrade yet. |
Thanks for the update. Just let me know when the time is right 👍 |
No description provided.