F-5271: require client certificate authentication in DualProviderFIPSTest example

pull/405/head
Chris Conlon 2026-08-20 14:19:01 -06:00
parent 28d4ad5735
commit cc5ad12a7c
1 changed files with 3 additions and 0 deletions

View File

@ -113,6 +113,9 @@ public class DualProviderFIPSTest {
(SSLServerSocket)ctx.getServerSocketFactory()
.createServerSocket(port)) {
/* Require client auth */
ss.setNeedClientAuth(true);
/* Signal client that server is ready */
serverReady.countDown();