This is an automated email from the ASF dual-hosted git repository.
szetszwo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new 39ed19fba RATIS-2596. Unsupported TLS cipher suites may crash gRPC
servers (#1510)
39ed19fba is described below
commit 39ed19fbac796dbd906c0d090cd73d49cc33ac22
Author: Istvan Fajth <[email protected]>
AuthorDate: Fri Jul 10 19:52:42 2026 +0200
RATIS-2596. Unsupported TLS cipher suites may crash gRPC servers (#1510)
---
ratis-grpc/src/main/java/org/apache/ratis/grpc/GrpcUtil.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ratis-grpc/src/main/java/org/apache/ratis/grpc/GrpcUtil.java
b/ratis-grpc/src/main/java/org/apache/ratis/grpc/GrpcUtil.java
index 36b8e9d65..800e40cee 100644
--- a/ratis-grpc/src/main/java/org/apache/ratis/grpc/GrpcUtil.java
+++ b/ratis-grpc/src/main/java/org/apache/ratis/grpc/GrpcUtil.java
@@ -33,10 +33,10 @@ import
org.apache.ratis.thirdparty.io.grpc.netty.GrpcSslContexts;
import org.apache.ratis.thirdparty.io.grpc.stub.StreamObserver;
import
org.apache.ratis.thirdparty.io.netty.handler.ssl.ApplicationProtocolConfig;
import org.apache.ratis.thirdparty.io.netty.handler.ssl.ClientAuth;
-import
org.apache.ratis.thirdparty.io.netty.handler.ssl.IdentityCipherSuiteFilter;
import org.apache.ratis.thirdparty.io.netty.handler.ssl.SslContext;
import org.apache.ratis.thirdparty.io.netty.handler.ssl.SslContextBuilder;
import org.apache.ratis.thirdparty.io.netty.handler.ssl.SslProvider;
+import
org.apache.ratis.thirdparty.io.netty.handler.ssl.SupportedCipherSuiteFilter;
import org.apache.ratis.util.IOUtils;
import org.apache.ratis.util.JavaUtils;
import org.apache.ratis.util.LogUtils;
@@ -339,7 +339,7 @@ public interface GrpcUtil {
}
final List<String> cipherSuites = tlsConf.getCipherSuites();
if (cipherSuites != null && !cipherSuites.isEmpty()) {
- b.ciphers(cipherSuites, IdentityCipherSuiteFilter.INSTANCE);
+ b.ciphers(cipherSuites, SupportedCipherSuiteFilter.INSTANCE);
}
return b;
}