kareem-wolfssl
kareem-wolfssl
Jenkins retest this please
Hi @rockdaboot , Using FreeBSD's wolfSSL config (found [here](https://cgit.freebsd.org/ports/tree/security/wolfssl/Makefile?id=71c26f55a13dc607c421cf1de326d079e5ee7b0d)), I see ALPN is not enabled, so `HAVE_ALPN` is not defined. However, ssl_wolfssl.c in wget2 is not guarding ALPN functions/identifiers with...
Hey @AMDmi3 , We don't enable this by default, as it is not required by everyone, and we aim to keep our default configuration as small as possible. Even if...
Sure, first make sure you are including `wolfssl/options.h` before any other wolfSSL headers. Then, wrap your wolfSSL ALPN/HTTP2 code in: `#ifdef HAVE_ALPN` ... `#endif`. You will probably want to provide...
Hi @haquocviet, We do ensure the output buffer is large enough with this check: ``` if (*outLen < (2 * inLen + 1)) return BAD_FUNC_ARG; ```` The +1 is for...
Good point, will update this behavior to match DoBase64_Encode's.
Hi @stanislaw , wc_DerToPemEx requires that WOLFSSL_DER_TO_PEM is defined, and NO_ASN/NO_CERTS are not defined. Using configure, you can enable either certgen or keygen: --enable-certgen or --enable-keygen to enable this flag.
Thanks for the report and the additional information. I'm working on reproducing this here. Will keep you updated.
Hi @Hippeys , I tried reproducing your issue on Linux and I was not able to reproduce it here. I am working on getting everything set up on Windows +...
@Hippeys I'm also unable to reproduce on Windows x64, using Visual Studio 2022, wolfSSL 5.6.6 + OpenSSL 3.2.0. I did have to modify your user_settings.h to not use Chacha/Poly assembly...