diff --git a/go-server-server/main.go b/go-server-server/main.go index 3e9d75c..955ca5d 100644 --- a/go-server-server/main.go +++ b/go-server-server/main.go @@ -50,6 +50,10 @@ func StartHttpsServer(handler http.Handler, messenger <-chan int, wgroup *sync.W // RequireAndVerifyClientCert ClientAuth: tls.RequireAndVerifyClientCert, MinVersion: tls.VersionTLS12, + // Disable TLS session tickets to avoid an AES-128-CTR + // panic in golang-fips/openssl/v2 with the SymCrypt + // FIPS provider (which does not implement AES-128-CTR). + SessionTicketsDisabled: true, } tlsConfig.BuildNameToCertificate()