diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 12:47:11 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-21 13:19:00 -0400 |
commit | accf239fa3e84451711a25a96ddb13877fd9fcfa (patch) | |
tree | 2063992761a8ec44b050ddfb7d86525ee1f009f5 /src/ext/ed25519/ref10 | |
parent | 25ccfff86a5b29c9c1ec9b3d01fe1dc796e9afa0 (diff) | |
download | tor-accf239fa3e84451711a25a96ddb13877fd9fcfa.tar.gz tor-accf239fa3e84451711a25a96ddb13877fd9fcfa.zip |
Rectify include paths (automated)
Diffstat (limited to 'src/ext/ed25519/ref10')
-rw-r--r-- | src/ext/ed25519/ref10/blinding.c | 2 | ||||
-rw-r--r-- | src/ext/ed25519/ref10/crypto_hash_sha512.h | 2 | ||||
-rw-r--r-- | src/ext/ed25519/ref10/keypair.c | 4 | ||||
-rw-r--r-- | src/ext/ed25519/ref10/randombytes.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/src/ext/ed25519/ref10/blinding.c b/src/ext/ed25519/ref10/blinding.c index 6408491fa5..8485524e5d 100644 --- a/src/ext/ed25519/ref10/blinding.c +++ b/src/ext/ed25519/ref10/blinding.c @@ -7,7 +7,7 @@ #include "ed25519_ref10.h" #include <string.h> -#include "common/crypto_util.h" +#include "lib/crypt_ops/crypto_util.h" static void ed25519_ref10_gettweak(unsigned char *out, const unsigned char *param) diff --git a/src/ext/ed25519/ref10/crypto_hash_sha512.h b/src/ext/ed25519/ref10/crypto_hash_sha512.h index 8ab0b45652..25e6a90cec 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 "common/crypto_digest.h" +#include "lib/crypt_ops/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) \ diff --git a/src/ext/ed25519/ref10/keypair.c b/src/ext/ed25519/ref10/keypair.c index 8ed0a4a8f5..a6e2d4c781 100644 --- a/src/ext/ed25519/ref10/keypair.c +++ b/src/ext/ed25519/ref10/keypair.c @@ -6,8 +6,8 @@ #include "crypto_hash_sha512.h" #include "ge.h" -#include "common/crypto_rand.h" -#include "common/crypto_util.h" +#include "lib/crypt_ops/crypto_rand.h" +#include "lib/crypt_ops/crypto_util.h" int crypto_sign_seckey(unsigned char *sk) diff --git a/src/ext/ed25519/ref10/randombytes.h b/src/ext/ed25519/ref10/randombytes.h index f5bc3b228d..c2cef10ceb 100644 --- a/src/ext/ed25519/ref10/randombytes.h +++ b/src/ext/ed25519/ref10/randombytes.h @@ -1,4 +1,4 @@ /* Added for Tor. */ -#include "common/crypto_rand.h" +#include "lib/crypt_ops/crypto_rand.h" #define randombytes(b, n) \ (crypto_strongest_rand((b), (n)), 0) |