diff --git a/src/tls13.c b/src/tls13.c index 57460a558..d7a030030 100644 --- a/src/tls13.c +++ b/src/tls13.c @@ -2566,10 +2566,6 @@ int SendTls13ClientHello(WOLFSSL* ssl) (ret = TLSX_EarlyData_Use(ssl, 0)) < 0) { return ret; } -#endif -#ifdef HAVE_QSH - if (QSH_Init(ssl) != 0) - return MEMORY_E; #endif /* Include length of TLS extensions. */ ret = TLSX_GetRequestSize(ssl, client_hello, &length); @@ -3889,10 +3885,6 @@ int DoTls13ClientHello(WOLFSSL* ssl, const byte* input, word32* inOutIdx, if ((i - begin) + totalExtSz > helloSz) return BUFFER_ERROR; - #ifdef HAVE_QSH - QSH_Init(ssl); - #endif - /* Auto populate extensions supported unless user defined. */ if ((ret = TLSX_PopulateExtensions(ssl, 1)) != 0) return ret;