mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-07-20 10:08:41 +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.
|
MBEDTLS_CIPHER_NULL_CIPHER is enabled. Found by TrinityTonic in #1719.
|
||||||
* Added length checks to some TLS parsing functions. Found and fixed by
|
* Added length checks to some TLS parsing functions. Found and fixed by
|
||||||
Philippe Antoine from Catena cyber. #1663.
|
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
|
Changes
|
||||||
* Change the shebang line in Perl scripts to look up perl in the PATH.
|
* Change the shebang line in Perl scripts to look up perl in the PATH.
|
||||||
|
|
|
@ -2528,7 +2528,7 @@
|
||||||
/* \} name SECTION: Module configuration options */
|
/* \} name SECTION: Module configuration options */
|
||||||
|
|
||||||
#if defined(TARGET_LIKE_MBED)
|
#if defined(TARGET_LIKE_MBED)
|
||||||
#include "mbedtls/target_config.h"
|
#include "target_config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "aes.h"
|
#include "aes.h"
|
||||||
|
|
||||||
#if defined(MBEDTLS_THREADING_C)
|
#if defined(MBEDTLS_THREADING_C)
|
||||||
#include "mbedtls/threading.h"
|
#include "threading.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED -0x0034 /**< The entropy source failed. */
|
#define MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED -0x0034 /**< The entropy source failed. */
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include "md.h"
|
#include "md.h"
|
||||||
|
|
||||||
#if defined(MBEDTLS_THREADING_C)
|
#if defined(MBEDTLS_THREADING_C)
|
||||||
#include "mbedtls/threading.h"
|
#include "threading.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue