From bbe0b20391a589639c42039eb287b89a3a99a420 Mon Sep 17 00:00:00 2001 From: Adriano dos Santos Fernandes Date: Fri, 21 Jul 2017 13:21:00 +0000 Subject: [PATCH] Fix libtomcrypt compilation problems. --- src/common/tomcrypt/tomcrypt.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/common/tomcrypt/tomcrypt.h b/src/common/tomcrypt/tomcrypt.h index ad27eec4e4..2ef21ffb5d 100644 --- a/src/common/tomcrypt/tomcrypt.h +++ b/src/common/tomcrypt/tomcrypt.h @@ -9,7 +9,7 @@ #include /* use configuration data */ -#include +#include "tomcrypt_custom.h" #ifdef __cplusplus extern "C" { @@ -63,17 +63,17 @@ enum { CRYPT_PK_INVALID_PADDING /* Invalid padding on input */ }; -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include "tomcrypt_cfg.h" +#include "tomcrypt_macros.h" +#include "tomcrypt_cipher.h" +#include "tomcrypt_hash.h" +#include "tomcrypt_mac.h" +#include "tomcrypt_prng.h" +#include "tomcrypt_pk.h" +#include "tomcrypt_math.h" +#include "tomcrypt_misc.h" +#include "tomcrypt_argchk.h" +#include "tomcrypt_pkcs.h" #ifdef __cplusplus }