diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-03-26 19:52:58 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-03-26 20:12:59 -0400 |
commit | 0eed0899cdeadd84dc5323f8ca0a3a13cd3779de (patch) | |
tree | 78078494701e80ecb461dd01b173cb51da9c4977 /src/ext | |
parent | d96dc2060a0470a4607db6f2991ea7c2c3508e23 (diff) | |
parent | 7759ac8df2944aa58fff4152dd2c4c521f78ef10 (diff) | |
download | tor-0eed0899cdeadd84dc5323f8ca0a3a13cd3779de.tar.gz tor-0eed0899cdeadd84dc5323f8ca0a3a13cd3779de.zip |
Merge branch 'bug24658-rm-curve25519-header' into bug24658-merge
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/ed25519/donna/ed25519-hash-custom.h | 2 | ||||
-rw-r--r-- | src/ext/ed25519/ref10/crypto_hash_sha512.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/ext/ed25519/donna/ed25519-hash-custom.h b/src/ext/ed25519/donna/ed25519-hash-custom.h index 609451abd5..cdeab3e45b 100644 --- a/src/ext/ed25519/donna/ed25519-hash-custom.h +++ b/src/ext/ed25519/donna/ed25519-hash-custom.h @@ -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; diff --git a/src/ext/ed25519/ref10/crypto_hash_sha512.h b/src/ext/ed25519/ref10/crypto_hash_sha512.h index 5dad935c79..7faddb1597 100644 --- a/src/ext/ed25519/ref10/crypto_hash_sha512.h +++ b/src/ext/ed25519/ref10/crypto_hash_sha512.h @@ -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) \ |