Add missing headers and fix name change issues

This commit is contained in:
Mohammad Azim Khan 2017-06-13 14:55:58 +01:00 committed by Mohammad Azim Khan
parent 1de892b85f
commit cf32c45bfd
2 changed files with 3 additions and 2 deletions

View File

@ -485,8 +485,8 @@ void decrypt_test_vec( int cipher_id, int pad_mode, HexParam_t * key,
memset( output, 0x00, sizeof( output ) ); memset( output, 0x00, sizeof( output ) );
#if !defined(MBEDTLS_GCM_C) && !defined(MBEDTLS_CHACHAPOLY_C) #if !defined(MBEDTLS_GCM_C) && !defined(MBEDTLS_CHACHAPOLY_C)
((void) hex_ad); ((void) ad);
((void) hex_tag); ((void) tag);
#endif #endif
/* Prepare context */ /* Prepare context */

View File

@ -1,4 +1,5 @@
/* BEGIN_HEADER */ /* BEGIN_HEADER */
#include "mbedtls/bignum.h"
#include "mbedtls/x509_crt.h" #include "mbedtls/x509_crt.h"
#include "mbedtls/x509_csr.h" #include "mbedtls/x509_csr.h"
#include "mbedtls/pem.h" #include "mbedtls/pem.h"