Include crypto_digest.h in order to solve dependency issues.

Included crypto_digest.h in some files in order to solve xof+digest module
dependency issues. Removed crypto.h where it isn't needed anymore.

Follows #24658.

Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net>
This commit is contained in:
Fernando Fernandez Mancera 2018-02-03 16:16:33 +01:00
parent 202d27af71
commit 61c7ec29f1
16 changed files with 16 additions and 7 deletions

View File

@ -15,7 +15,7 @@
#include "util.h"
#include "torlog.h"
#include "container.h"
#include "crypto.h"
#include "crypto_digest.h"
#include <stdlib.h>
#include <string.h>

View File

@ -29,6 +29,7 @@
#include "crypto_ed25519.h"
#include "crypto_format.h"
#include "crypto_rsa.h"
#include "crypto_digest.h"
DISABLE_GCC_WARNING(redundant-decls)

View File

@ -24,6 +24,7 @@
#include "crypto.h"
#include "crypto_curve25519.h"
#include "crypto_format.h"
#include "crypto_digest.h"
#include "util.h"
#include "torlog.h"

View File

@ -23,6 +23,7 @@
#include "crypto.h"
#include "crypto_digest.h"
#include "crypto_curve25519.h"
#include "crypto_ed25519.h"
#include "crypto_format.h"

View File

@ -19,6 +19,7 @@
#include "crypto_curve25519.h"
#include "crypto_ed25519.h"
#include "crypto_format.h"
#include "crypto_digest.h"
#include "util.h"
#include "util_format.h"
#include "torlog.h"

View File

@ -11,6 +11,7 @@
#include "crypto.h"
#include "crypto_s2k.h"
#include "crypto_pwbox.h"
#include "crypto_digest.h"
#include "di_ops.h"
#include "util.h"
#include "pwbox.h"

View File

@ -15,6 +15,7 @@
#include "crypto_curve25519.h"
#include "crypto_ed25519.h"
#include "crypto_format.h"
#include "crypto_digest.h"
DISABLE_GCC_WARNING(redundant-decls)

View File

@ -16,6 +16,7 @@
#include "util.h"
#include "compat.h"
#include "crypto_s2k.h"
#include "crypto_digest.h"
#include <openssl/evp.h>

View File

@ -25,6 +25,7 @@
#include <ws2tcpip.h>
#endif
#include "crypto.h"
#include "compat.h"
/* Some versions of OpenSSL declare SSL_get_selected_srtp_profile twice in
@ -32,7 +33,6 @@
DISABLE_GCC_WARNING(redundant-decls)
#include <openssl/opensslv.h>
#include "crypto.h"
#ifdef OPENSSL_NO_EC
#error "We require OpenSSL with ECC support"

View File

@ -11,7 +11,7 @@
* \brief Headers for tortls.c
**/
#include "crypto.h"
#include "crypto_digest.h"
#include "compat_openssl.h"
#include "compat.h"
#include "testsupport.h"

View File

@ -16,7 +16,7 @@
#define UTIL_PRIVATE
#include "util.h"
#include "torlog.h"
#include "crypto.h"
#include "crypto_digest.h"
#include "torint.h"
#include "container.h"
#include "address.h"

View File

@ -9,7 +9,7 @@
void ed25519_hash(uint8_t *hash, const uint8_t *in, size_t inlen);
*/
#include "crypto.h"
#include "crypto_digest.h"
typedef struct ed25519_hash_context {
crypto_digest_t *ctx;

View File

@ -1,5 +1,5 @@
/* Added for Tor. */
#include "crypto.h"
#include "crypto_digest.h"
/* Set 'out' to the 512-bit SHA512 hash of the 'len'-byte string in 'inp' */
#define crypto_hash_sha512(out, inp, len) \

View File

@ -12,7 +12,7 @@
#include "orconfig.h"
#include "compat.h"
#include "crypto.h"
#include "crypto_digest.h"
#include "crypto_format.h"
#include "di_ops.h"
#include "ht.h"

View File

@ -22,6 +22,7 @@
#define ONION_NTOR_PRIVATE
#include "crypto.h"
#include "crypto_digest.h"
#include "onion_ntor.h"
#include "torlog.h"
#include "util.h"

View File

@ -40,6 +40,7 @@ ENABLE_GCC_WARNING(redundant-decls)
#include "util.h"
#include "torlog.h"
#include "crypto.h"
#include "crypto_digest.h"
#include "address.h"
#include "util_format.h"