mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-17 14:27:37 +00:00
Merge remote-tracking branch 'public/pr/1779' into mbedtls-2.1
This commit is contained in:
commit
c098ec3af6
|
@ -19,6 +19,8 @@ Bugfix
|
|||
MBEDTLS_CIPHER_NULL_CIPHER is enabled. Found by TrinityTonic in #1719.
|
||||
* Added length checks to some TLS parsing functions. Found and fixed by
|
||||
Philippe Antoine from Catena cyber. #1663.
|
||||
* Fix namespacing in header files. Remove the `mbedtls` namespacing in
|
||||
the `#include` in the header files. Resolves #857
|
||||
|
||||
Changes
|
||||
* Change the shebang line in Perl scripts to look up perl in the PATH.
|
||||
|
|
|
@ -2528,7 +2528,7 @@
|
|||
/* \} name SECTION: Module configuration options */
|
||||
|
||||
#if defined(TARGET_LIKE_MBED)
|
||||
#include "mbedtls/target_config.h"
|
||||
#include "target_config.h"
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "aes.h"
|
||||
|
||||
#if defined(MBEDTLS_THREADING_C)
|
||||
#include "mbedtls/threading.h"
|
||||
#include "threading.h"
|
||||
#endif
|
||||
|
||||
#define MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED -0x0034 /**< The entropy source failed. */
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
#include "md.h"
|
||||
|
||||
#if defined(MBEDTLS_THREADING_C)
|
||||
#include "mbedtls/threading.h"
|
||||
#include "threading.h"
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue