diff options
author | Isis Lovecruft <isis@torproject.org> | 2018-02-20 19:42:02 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2018-02-20 20:29:54 +0000 |
commit | 3e9140e79a063ca7a8539a0d58e6d379be775ff3 (patch) | |
tree | 13c5563fdfb31884b90353c61b0166244b84eec0 /src/common/crypto_digest.h | |
parent | 0fad49e1c495414cb80994863b616005724da51f (diff) | |
download | tor-3e9140e79a063ca7a8539a0d58e6d379be775ff3.tar.gz tor-3e9140e79a063ca7a8539a0d58e6d379be775ff3.zip |
crypto: Remove unnecessary curve25519 header from crypto_digest.h.
* ADD includes for "torint.h" and "container.h" to crypto_digest.h.
* ADD includes for "crypto_digest.h" to a couple places in which
crypto_digest_t was then missing.
* FIXES part of #24658: https://bugs.torproject.org/24658#comment:30
Diffstat (limited to 'src/common/crypto_digest.h')
-rw-r--r-- | src/common/crypto_digest.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/crypto_digest.h b/src/common/crypto_digest.h index 17daac9c35..f8cd44a035 100644 --- a/src/common/crypto_digest.h +++ b/src/common/crypto_digest.h @@ -15,7 +15,8 @@ #include <stdio.h> -#include "crypto_curve25519.h" +#include "container.h" +#include "torint.h" /** Length of the output of our message digest. */ #define DIGEST_LEN 20 |