Merge remote-tracking branch 'public/pr/1779' into mbedtls-2.1

This commit is contained in:
Simon Butcher 2018-07-20 14:47:37 +01:00
commit c098ec3af6
4 changed files with 5 additions and 3 deletions

View file

@ -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.

View file

@ -2528,7 +2528,7 @@
/* \} name SECTION: Module configuration options */
#if defined(TARGET_LIKE_MBED)
#include "mbedtls/target_config.h"
#include "target_config.h"
#endif
/*

View file

@ -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. */

View file

@ -26,7 +26,7 @@
#include "md.h"
#if defined(MBEDTLS_THREADING_C)
#include "mbedtls/threading.h"
#include "threading.h"
#endif
/*