failed to build tls-sock-client
failed to build tls-sock-client accordding to the readme
Hi @Breeze-Wu ,
The default DH implementation in wolfSSL uses the std math lib -lm. However if you build wolfSSL with WOLFSSL_DH_CONST it will use internal math. Example build wolfSSL with: ./configure CFLAGS="-DWOLFSSL_DH_CONST -DHAVE_FFDHE_2048" && make && sudo make install. Or you can disable DH math using --disable-dh.
Thanks, David Garske, wolfSSL
Thank your reply,but I use cmake to build how to use cmake to disable dh
Thanks,
Breeze-Wu
Hi @Breeze-Wu ,
With wolfSSL and cmake the option to disable DH is WOLFSSL_DH=no. If you use ccmake .. you can see the list of options supported with cmake.
Thanks, David Garske, wolfSSL