Included "integer.h" in source files with Integer dependencies so make would rebuild stale object files
parent
3ad53d9b68
commit
f61577af9d
|
|
@ -2,6 +2,7 @@
|
||||||
#define CRYPTOPP_ALGEBRA_H
|
#define CRYPTOPP_ALGEBRA_H
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "misc.h"
|
#include "misc.h"
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
#include "cryptlib.h"
|
#include "cryptlib.h"
|
||||||
#include "smartptr.h"
|
#include "smartptr.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "secblock.h"
|
#include "secblock.h"
|
||||||
|
|
||||||
#if GCC_DIAGNOSTIC_AWARE
|
#if GCC_DIAGNOSTIC_AWARE
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
#define CRYPTOPP_ARGNAMES_H
|
#define CRYPTOPP_ARGNAMES_H
|
||||||
|
|
||||||
#include "cryptlib.h"
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
#ifndef CRYPTOPP_BLUMSHUB_H
|
#ifndef CRYPTOPP_BLUMSHUB_H
|
||||||
#define CRYPTOPP_BLUMSHUB_H
|
#define CRYPTOPP_BLUMSHUB_H
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "modarith.h"
|
#include "modarith.h"
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
|
||||||
|
|
@ -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 "integer.h"
|
||||||
|
#include "factory.h"
|
||||||
#include "filters.h"
|
#include "filters.h"
|
||||||
#include "hex.h"
|
#include "hex.h"
|
||||||
#include "randpool.h"
|
#include "randpool.h"
|
||||||
|
|
|
||||||
2
dsa.h
2
dsa.h
|
|
@ -4,6 +4,8 @@
|
||||||
/** \file
|
/** \file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "gfpcrypt.h"
|
#include "gfpcrypt.h"
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
|
||||||
2
ec2n.h
2
ec2n.h
|
|
@ -1,6 +1,8 @@
|
||||||
#ifndef CRYPTOPP_EC2N_H
|
#ifndef CRYPTOPP_EC2N_H
|
||||||
#define CRYPTOPP_EC2N_H
|
#define CRYPTOPP_EC2N_H
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "gf2n.h"
|
#include "gf2n.h"
|
||||||
#include "eprecomp.h"
|
#include "eprecomp.h"
|
||||||
#include "smartptr.h"
|
#include "smartptr.h"
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,9 @@
|
||||||
/*! \file
|
/*! \file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "pubkey.h"
|
#include "config.h"
|
||||||
#include "integer.h"
|
#include "integer.h"
|
||||||
|
#include "pubkey.h"
|
||||||
#include "asn.h"
|
#include "asn.h"
|
||||||
#include "hmac.h"
|
#include "hmac.h"
|
||||||
#include "sha.h"
|
#include "sha.h"
|
||||||
|
|
|
||||||
2
ecp.h
2
ecp.h
|
|
@ -1,6 +1,8 @@
|
||||||
#ifndef CRYPTOPP_ECP_H
|
#ifndef CRYPTOPP_ECP_H
|
||||||
#define CRYPTOPP_ECP_H
|
#define CRYPTOPP_ECP_H
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "modarith.h"
|
#include "modarith.h"
|
||||||
#include "eprecomp.h"
|
#include "eprecomp.h"
|
||||||
#include "smartptr.h"
|
#include "smartptr.h"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
#ifndef CRYPTOPP_ELGAMAL_H
|
#ifndef CRYPTOPP_ELGAMAL_H
|
||||||
#define CRYPTOPP_ELGAMAL_H
|
#define CRYPTOPP_ELGAMAL_H
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "modexppc.h"
|
#include "modexppc.h"
|
||||||
#include "dsa.h"
|
#include "dsa.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
#ifndef CRYPTOPP_EPRECOMP_H
|
#ifndef CRYPTOPP_EPRECOMP_H
|
||||||
#define CRYPTOPP_EPRECOMP_H
|
#define CRYPTOPP_EPRECOMP_H
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
#include "integer.h"
|
#include "integer.h"
|
||||||
#include "algebra.h"
|
#include "algebra.h"
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
|
||||||
3
esign.h
3
esign.h
|
|
@ -6,8 +6,9 @@
|
||||||
ESIGN signature schemes as defined in IEEE P1363a.
|
ESIGN signature schemes as defined in IEEE P1363a.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "pubkey.h"
|
#include "config.h"
|
||||||
#include "integer.h"
|
#include "integer.h"
|
||||||
|
#include "pubkey.h"
|
||||||
#include "asn.h"
|
#include "asn.h"
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,9 @@
|
||||||
#ifndef CRYPTOPP_IMPORTS
|
#ifndef CRYPTOPP_IMPORTS
|
||||||
#define CRYPTOPP_DEFAULT_NO_DLL
|
#define CRYPTOPP_DEFAULT_NO_DLL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "dll.h"
|
#include "dll.h"
|
||||||
#include "oids.h"
|
#include "oids.h"
|
||||||
#include "trap.h"
|
#include "trap.h"
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,8 @@
|
||||||
Implementation of schemes based on DL over GF(p)
|
Implementation of schemes based on DL over GF(p)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "pubkey.h"
|
#include "pubkey.h"
|
||||||
#include "modexppc.h"
|
#include "modexppc.h"
|
||||||
#include "sha.h"
|
#include "sha.h"
|
||||||
|
|
|
||||||
3
luc.h
3
luc.h
|
|
@ -4,9 +4,10 @@
|
||||||
/** \file
|
/** \file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "pkcspad.h"
|
#include "pkcspad.h"
|
||||||
#include "oaep.h"
|
#include "oaep.h"
|
||||||
#include "integer.h"
|
|
||||||
#include "dh.h"
|
#include "dh.h"
|
||||||
#include "trap.h"
|
#include "trap.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,9 +4,9 @@
|
||||||
// implementations are in integer.cpp
|
// implementations are in integer.cpp
|
||||||
|
|
||||||
#include "cryptlib.h"
|
#include "cryptlib.h"
|
||||||
#include "misc.h"
|
|
||||||
#include "integer.h"
|
#include "integer.h"
|
||||||
#include "algebra.h"
|
#include "algebra.h"
|
||||||
|
#include "misc.h"
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,8 @@
|
||||||
#ifndef CRYPTOPP_MODEXPPC_H
|
#ifndef CRYPTOPP_MODEXPPC_H
|
||||||
#define CRYPTOPP_MODEXPPC_H
|
#define CRYPTOPP_MODEXPPC_H
|
||||||
|
|
||||||
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "modarith.h"
|
#include "modarith.h"
|
||||||
#include "eprecomp.h"
|
#include "eprecomp.h"
|
||||||
#include "smartptr.h"
|
#include "smartptr.h"
|
||||||
|
|
|
||||||
2
mqv.h
2
mqv.h
|
|
@ -4,6 +4,8 @@
|
||||||
/** \file
|
/** \file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "gfpcrypt.h"
|
#include "gfpcrypt.h"
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
#ifndef CRYPTOPP_NBTHEORY_H
|
#ifndef CRYPTOPP_NBTHEORY_H
|
||||||
#define CRYPTOPP_NBTHEORY_H
|
#define CRYPTOPP_NBTHEORY_H
|
||||||
|
|
||||||
|
#include "cryptlib.h"
|
||||||
#include "integer.h"
|
#include "integer.h"
|
||||||
#include "algparam.h"
|
#include "algparam.h"
|
||||||
|
|
||||||
|
|
|
||||||
1
pubkey.h
1
pubkey.h
|
|
@ -32,6 +32,7 @@
|
||||||
The "DL_" prefix means an implementation using group operations (in groups where discrete log is hard).
|
The "DL_" prefix means an implementation using group operations (in groups where discrete log is hard).
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "integer.h"
|
||||||
#include "modarith.h"
|
#include "modarith.h"
|
||||||
#include "filters.h"
|
#include "filters.h"
|
||||||
#include "eprecomp.h"
|
#include "eprecomp.h"
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
#define CRYPTOPP_PWDBASED_H
|
#define CRYPTOPP_PWDBASED_H
|
||||||
|
|
||||||
#include "cryptlib.h"
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "hmac.h"
|
#include "hmac.h"
|
||||||
#include "hrtimer.h"
|
#include "hrtimer.h"
|
||||||
#include "integer.h"
|
#include "integer.h"
|
||||||
|
|
|
||||||
3
rabin.h
3
rabin.h
|
|
@ -4,9 +4,10 @@
|
||||||
/** \file
|
/** \file
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "oaep.h"
|
#include "oaep.h"
|
||||||
#include "pssr.h"
|
#include "pssr.h"
|
||||||
#include "integer.h"
|
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
||||||
|
|
|
||||||
2
rsa.h
2
rsa.h
|
|
@ -6,6 +6,8 @@
|
||||||
ciphers and signature schemes as defined in PKCS #1 v2.0.
|
ciphers and signature schemes as defined in PKCS #1 v2.0.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "pubkey.h"
|
#include "pubkey.h"
|
||||||
#include "asn.h"
|
#include "asn.h"
|
||||||
#include "pkcspad.h"
|
#include "pkcspad.h"
|
||||||
|
|
|
||||||
2
rw.h
2
rw.h
|
|
@ -6,6 +6,8 @@
|
||||||
Rabin-Williams signature schemes as defined in IEEE P1363.
|
Rabin-Williams signature schemes as defined in IEEE P1363.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "pubkey.h"
|
#include "pubkey.h"
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,8 @@
|
||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
|
|
||||||
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
|
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
|
||||||
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "blumshub.h"
|
#include "blumshub.h"
|
||||||
#include "rsa.h"
|
#include "rsa.h"
|
||||||
#include "md2.h"
|
#include "md2.h"
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,8 @@
|
||||||
#include "pch.h"
|
#include "pch.h"
|
||||||
|
|
||||||
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
|
#define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1
|
||||||
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "smartptr.h"
|
#include "smartptr.h"
|
||||||
#include "crc.h"
|
#include "crc.h"
|
||||||
#include "adler32.h"
|
#include "adler32.h"
|
||||||
|
|
@ -12,12 +14,9 @@
|
||||||
#include "sha.h"
|
#include "sha.h"
|
||||||
#include "tiger.h"
|
#include "tiger.h"
|
||||||
#include "ripemd.h"
|
#include "ripemd.h"
|
||||||
|
|
||||||
#include "hmac.h"
|
#include "hmac.h"
|
||||||
#include "hkdf.h"
|
#include "hkdf.h"
|
||||||
#include "ttmac.h"
|
#include "ttmac.h"
|
||||||
|
|
||||||
#include "integer.h"
|
|
||||||
#include "pwdbased.h"
|
#include "pwdbased.h"
|
||||||
#include "filters.h"
|
#include "filters.h"
|
||||||
#include "hex.h"
|
#include "hex.h"
|
||||||
|
|
|
||||||
2
xtr.h
2
xtr.h
|
|
@ -5,6 +5,8 @@
|
||||||
"The XTR public key system" by Arjen K. Lenstra and Eric R. Verheul
|
"The XTR public key system" by Arjen K. Lenstra and Eric R. Verheul
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "modarith.h"
|
#include "modarith.h"
|
||||||
#include "trap.h"
|
#include "trap.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,8 @@
|
||||||
"The XTR public key system" by Arjen K. Lenstra and Eric R. Verheul
|
"The XTR public key system" by Arjen K. Lenstra and Eric R. Verheul
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "cryptlib.h"
|
||||||
|
#include "integer.h"
|
||||||
#include "xtr.h"
|
#include "xtr.h"
|
||||||
|
|
||||||
NAMESPACE_BEGIN(CryptoPP)
|
NAMESPACE_BEGIN(CryptoPP)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue