Skip to content

Commit

Permalink
Use TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 cipher
Browse files Browse the repository at this point in the history
  • Loading branch information
tinker-michaelj committed May 15, 2020
1 parent 856a700 commit 849133c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public NettyServerBuilder buildNettyServer(int port, boolean tlsSupport) throws
String[] protocols = new String[] {"TLSv1.2", "TLSv1.3"};
List<String> ciphers = Arrays.asList(
"TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384",
"TLS_RSA_WITH_AES_256_GCM_SHA384"
"TLS_DHE_RSA_WITH_AES_256_GCM_SHA384"
);
SslContextBuilder contextBuilder =
GrpcSslContexts.configure(SslContextBuilder.forServer(certChain, privateKey));
Expand Down

0 comments on commit 849133c

Please sign in to comment.