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

This commit is contained in:
Simon Butcher 2018-07-10 14:59:56 +01:00
commit 57e9fe2df4
3 changed files with 3 additions and 5 deletions

View File

@ -13,6 +13,8 @@ Bugfix
was creating an invalid ASN.1 tag. Found by Aryeh R. Fixes #1257
* Remove unused headers included in x509.c. Found by Chris Hanson and fixed
by Brendan Shanks. Part of a fix for #992.
* Fix compilation error when MBEDTLS_ARC4_C is disabled and
MBEDTLS_CIPHER_NULL_CIPHER is enabled. Found by TrinityTonic in #1719.
Changes
* Change the shebang line in Perl scripts to look up perl in the PATH.

View File

@ -42,7 +42,7 @@
#define MBEDTLS_CIPHER_MODE_WITH_PADDING
#endif
#if defined(MBEDTLS_ARC4_C)
#if defined(MBEDTLS_ARC4_C) || defined(MBEDTLS_CIPHER_NULL_CIPHER)
#define MBEDTLS_CIPHER_MODE_STREAM
#endif

View File

@ -45,10 +45,6 @@
#include "mbedtls/ccm.h"
#endif
#if defined(MBEDTLS_ARC4_C) || defined(MBEDTLS_CIPHER_NULL_CIPHER)
#define MBEDTLS_CIPHER_MODE_STREAM
#endif
/* Implementation that should never be optimized out by the compiler */
static void mbedtls_zeroize( void *v, size_t n ) {
volatile unsigned char *p = v; while( n-- ) *p++ = 0;