File tree Expand file tree Collapse file tree
pqc-test-common/src/main/java/com/google/api/gax/pqc
pqc-test-release/src/test/java/com/google/api/gax/httpjson
pqc-test-snapshot/src/test/java/com/google/api/gax/httpjson Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -175,15 +175,15 @@ public void configure(HttpsParameters params) {
175175 // 12. Initialize netty SSL Context builder to establish gRPC server channel secure layers.
176176 // Bind the builder explicitly to Bouncy Castle JSSE provider context.
177177 io .netty .handler .ssl .SslContextBuilder nettySslContextBuilder =
178- io .netty .handler .ssl .SslContextBuilder .forServer (kmf );
178+ io .netty .handler .ssl .SslContextBuilder .forServer (kmf );
179179
180180 // 14. Finalize compiling standard Netty SSL configurations.
181181 // Force Netty to execute handshakes utilizing the standard JRE (JDK) SSL Provider
182182 // so Bouncy Castle JJSSE (registered in the provider context) manages the secure pipelines.
183183 io .netty .handler .ssl .SslContext nettySslContext =
184184 io .grpc .netty .GrpcSslContexts .configure (
185185 nettySslContextBuilder , io .netty .handler .ssl .SslProvider .JDK )
186- .option (OpenSslContextOption .GROUPS , new String [] { "X25519MLKEM768" })
186+ .option (OpenSslContextOption .GROUPS , new String [] {"X25519MLKEM768" })
187187 .build ();
188188
189189 // 15. Build a raw gRPC method descriptor to mock a unary SayHello endpoint.
Original file line number Diff line number Diff line change 2929 */
3030package com .google .api .gax .httpjson ;
3131
32-
3332public class RunPqcTest extends PqcConnectivityTest {
3433
3534 @ Override
Original file line number Diff line number Diff line change 3030
3131package com .google .api .gax .httpjson ;
3232
33-
3433public class RunPqcTest extends PqcConnectivityTest {
3534
3635 @ Override
You can’t perform that action at this time.
0 commit comments