wolfssl
wolfssl copied to clipboard
The wolfSSL library is a small, fast, portable implementation of TLS/SSL for embedded devices to the cloud. wolfSSL supports up to TLS 1.3!
Fixes ZD 19760 Before this fix, the certificates were not getting into the certificate manager. This makes sure they are going in.
Fixes https://github.com/wolfSSL/wolfssl/issues/8597
### Contact Details [email protected] ### Version 5.8.0 ### Description Code does not link with the RHEL 10/GCC 14.2.1 standard CFLAGS ``` -O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security...
### Contact Details [email protected] ### Version ubutun 5.7.6 ### Description ./configure make sudo make install ./testsuite/testsuite.test wolfSSL is configured and built by default ### Reproduction steps Use this script for...
# Description The `sizeof(*ptr)` expressions are a bit confusing when `ptr == NULL`. So this PR replaces them with `sizeof(TYPE)` expression instead to make the meaning more clear. Fixes zd#...
### Contact Details [email protected] ### Version ubutun 5.7.6 ### Description ./configure make sudo make install ./testsuite/testsuite.test wolfSSL is configured and built by default ### Reproduction steps ``` // gcc -g...
# Description Previously wolfSSL_X509_verify_cert was failing out after finding an invalid chain, this commit updates it to remove the invalid cert and retry until a valid chain is found or...
# Description Fixes zd#19911 Fix parsing RPK with no parameters. As per RFC7250 section 3, the algorithm parameters are optional. Fix building unit tests with --enable-rpk --disable-rsa. # Testing Customer...
# Description Fixes zd#19929 # Testing Customer provided test # Checklist - [ ] added tests - [ ] updated/added doxygen - [ ] updated appropriate READMEs - [ ]...