Merge pull request #90482 from Faless/mbedtls/3.6.0-tls

mbedTLS: Update to new LTS v3.6.0
This commit is contained in:
Rémi Verschelde
2024-04-11 11:02:46 +02:00
276 changed files with 97018 additions and 38349 deletions

View File

@ -34,6 +34,7 @@ if not has_module:
"constant_time.c",
"ctr_drbg.c",
"entropy.c",
"md.c",
"md5.c",
"sha1.c",
"sha256.c",

View File

@ -39,6 +39,9 @@
#include <mbedtls/md5.h>
#include <mbedtls/sha1.h>
#include <mbedtls/sha256.h>
#if MBEDTLS_VERSION_MAJOR >= 3
#include <mbedtls/compat-2.x.h>
#endif
// RandomGenerator
CryptoCore::RandomGenerator::RandomGenerator() {