Included "integer.h" in source files with Integer dependencies so make would rebuild stale object files

This commit is contained in:
Jeffrey Walton 2015-07-30 03:30:27 -04:00
parent 3ad53d9b68
commit f61577af9d
28 changed files with 51 additions and 9 deletions

View File

@ -2,6 +2,7 @@
#define CRYPTOPP_ALGEBRA_H
#include "config.h"
#include "integer.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)

View File

@ -3,6 +3,7 @@
#include "cryptlib.h"
#include "smartptr.h"
#include "integer.h"
#include "secblock.h"
#if GCC_DIAGNOSTIC_AWARE

View File

@ -2,6 +2,7 @@
#define CRYPTOPP_ARGNAMES_H
#include "cryptlib.h"
#include "integer.h"
NAMESPACE_BEGIN(CryptoPP)

View File

@ -1,6 +1,8 @@
#ifndef CRYPTOPP_BLUMSHUB_H
#define CRYPTOPP_BLUMSHUB_H
#include "config.h"
#include "integer.h"
#include "modarith.h"
NAMESPACE_BEGIN(CryptoPP)

View File

@ -1,5 +1,8 @@
#include "factory.h"
// datatest.cpp - written and placed in public domain by Wei Dai
#include "config.h"
#include "integer.h"
#include "factory.h"
#include "filters.h"
#include "hex.h"
#include "randpool.h"

2
dsa.h
View File

@ -4,6 +4,8 @@
/** \file
*/
#include "config.h"
#include "integer.h"
#include "gfpcrypt.h"
NAMESPACE_BEGIN(CryptoPP)

2
ec2n.h
View File

@ -1,6 +1,8 @@
#ifndef CRYPTOPP_EC2N_H
#define CRYPTOPP_EC2N_H
#include "config.h"
#include "integer.h"
#include "gf2n.h"
#include "eprecomp.h"
#include "smartptr.h"

View File

@ -4,8 +4,9 @@
/*! \file
*/
#include "pubkey.h"
#include "config.h"
#include "integer.h"
#include "pubkey.h"
#include "asn.h"
#include "hmac.h"
#include "sha.h"

2
ecp.h
View File

@ -1,6 +1,8 @@
#ifndef CRYPTOPP_ECP_H
#define CRYPTOPP_ECP_H
#include "config.h"
#include "integer.h"
#include "modarith.h"
#include "eprecomp.h"
#include "smartptr.h"

View File

@ -1,6 +1,8 @@
#ifndef CRYPTOPP_ELGAMAL_H
#define CRYPTOPP_ELGAMAL_H
#include "config.h"
#include "integer.h"
#include "modexppc.h"
#include "dsa.h"

View File

@ -1,6 +1,7 @@
#ifndef CRYPTOPP_EPRECOMP_H
#define CRYPTOPP_EPRECOMP_H
#include "config.h"
#include "integer.h"
#include "algebra.h"
#include <vector>

View File

@ -6,8 +6,9 @@
ESIGN signature schemes as defined in IEEE P1363a.
*/
#include "pubkey.h"
#include "config.h"
#include "integer.h"
#include "pubkey.h"
#include "asn.h"
NAMESPACE_BEGIN(CryptoPP)

View File

@ -7,6 +7,9 @@
#ifndef CRYPTOPP_IMPORTS
#define CRYPTOPP_DEFAULT_NO_DLL
#endif
#include "config.h"
#include "integer.h"
#include "dll.h"
#include "oids.h"
#include "trap.h"

View File

@ -5,6 +5,8 @@
Implementation of schemes based on DL over GF(p)
*/
#include "config.h"
#include "integer.h"
#include "pubkey.h"
#include "modexppc.h"
#include "sha.h"

3
luc.h
View File

@ -4,9 +4,10 @@
/** \file
*/
#include "config.h"
#include "integer.h"
#include "pkcspad.h"
#include "oaep.h"
#include "integer.h"
#include "dh.h"
#include "trap.h"

View File

@ -4,9 +4,9 @@
// implementations are in integer.cpp
#include "cryptlib.h"
#include "misc.h"
#include "integer.h"
#include "algebra.h"
#include "misc.h"
NAMESPACE_BEGIN(CryptoPP)

View File

@ -1,6 +1,8 @@
#ifndef CRYPTOPP_MODEXPPC_H
#define CRYPTOPP_MODEXPPC_H
#include "cryptlib.h"
#include "integer.h"
#include "modarith.h"
#include "eprecomp.h"
#include "smartptr.h"

2
mqv.h
View File

@ -4,6 +4,8 @@
/** \file
*/
#include "cryptlib.h"
#include "integer.h"
#include "gfpcrypt.h"
NAMESPACE_BEGIN(CryptoPP)

View File

@ -3,6 +3,7 @@
#ifndef CRYPTOPP_NBTHEORY_H
#define CRYPTOPP_NBTHEORY_H
#include "cryptlib.h"
#include "integer.h"
#include "algparam.h"

View File

@ -32,6 +32,7 @@
The "DL_" prefix means an implementation using group operations (in groups where discrete log is hard).
*/
#include "integer.h"
#include "modarith.h"
#include "filters.h"
#include "eprecomp.h"

View File

@ -4,6 +4,7 @@
#define CRYPTOPP_PWDBASED_H
#include "cryptlib.h"
#include "integer.h"
#include "hmac.h"
#include "hrtimer.h"
#include "integer.h"

View File

@ -4,9 +4,10 @@
/** \file
*/
#include "cryptlib.h"
#include "integer.h"
#include "oaep.h"
#include "pssr.h"
#include "integer.h"
NAMESPACE_BEGIN(CryptoPP)

2
rsa.h
View File

@ -6,6 +6,8 @@
ciphers and signature schemes as defined in PKCS #1 v2.0.
*/
#include "cryptlib.h"
#include "integer.h"
#include "pubkey.h"
#include "asn.h"
#include "pkcspad.h"

2
rw.h
View File

@ -6,6 +6,8 @@
Rabin-Williams signature schemes as defined in IEEE P1363.
*/
#include "cryptlib.h"
#include "integer.h"
#include "pubkey.h"
NAMESPACE_BEGIN(CryptoPP)

View File

@ -3,6 +3,8 @@
#include "pch.h"
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
#include "cryptlib.h"
#include "integer.h"
#include "blumshub.h"
#include "rsa.h"
#include "md2.h"

View File

@ -3,6 +3,8 @@
#include "pch.h"
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
#include "cryptlib.h"
#include "integer.h"
#include "smartptr.h"
#include "crc.h"
#include "adler32.h"
@ -12,12 +14,9 @@
#include "sha.h"
#include "tiger.h"
#include "ripemd.h"
#include "hmac.h"
#include "hkdf.h"
#include "ttmac.h"
#include "integer.h"
#include "pwdbased.h"
#include "filters.h"
#include "hex.h"

2
xtr.h
View File

@ -5,6 +5,8 @@
"The XTR public key system" by Arjen K. Lenstra and Eric R. Verheul
*/
#include "cryptlib.h"
#include "integer.h"
#include "modarith.h"
#include "trap.h"

View File

@ -5,6 +5,8 @@
"The XTR public key system" by Arjen K. Lenstra and Eric R. Verheul
*/
#include "cryptlib.h"
#include "integer.h"
#include "xtr.h"
NAMESPACE_BEGIN(CryptoPP)