Update to wolfssl 4.8.0 and do not verify cert

This commit is contained in:
Duke
2024-02-12 12:52:01 -05:00
parent 40542bf687
commit 809c0a4b38
2 changed files with 4 additions and 2 deletions

View File

@@ -1,9 +1,10 @@
package=wolfssl
$(package)_version=4.7.0
$(package)_version=4.8.0
$(package)_download_path=https://github.com/wolfSSL/wolfssl/archive
$(package)_download_file=v$($(package)_version)-stable.tar.gz
$(package)_file_name=wolfssl-$($(package)_version).tar.gz
$(package)_sha256_hash=b0e740b31d4d877d540ad50cc539a8873fc41af02bd3091c4357b403f7106e31
#$(package)_sha256_hash=b0e740b31d4d877d540ad50cc539a8873fc41af02bd3091c4357b403f7106e31
$(package)_sha256_hash=72c22efcdab0f18f9b0bb45621c213144f88b4a9e9b9cc06878b47744e058885
define $(package)_set_vars
$(package)_config_env=AR="$($(package)_ar)" RANLIB="$($(package)_ranlib)" CC="$($(package)_cc)"

View File

@@ -426,6 +426,7 @@ bool TLSManager::CheckKeyCert()
}
int err = wolfSSL_X509_verify(mycert, mykey);
return true;
if (err == WOLFSSL_SUCCESS) {
return true;
} else {