diff options
author | Isis Lovecruft <isis@torproject.org> | 2018-04-06 22:04:50 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2018-04-06 22:49:18 +0000 |
commit | 809f6fae848f53d2096bef1b2e99bcc929872e2a (patch) | |
tree | af585c224252877be4a76fb8f38cbe8527b33ccd /src/ext | |
parent | e32fc0806d07b0ff83978132c56f7cbd1a2ad2ce (diff) | |
download | tor-809f6fae848f53d2096bef1b2e99bcc929872e2a.tar.gz tor-809f6fae848f53d2096bef1b2e99bcc929872e2a.zip |
refactor: Remove unnecessary `#include "crypto.h"` throughout codebase.
* FIXES part of #24658: https://bugs.torproject.org/24658
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/ed25519/ref10/randombytes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/ed25519/ref10/randombytes.h b/src/ext/ed25519/ref10/randombytes.h index 8bf31631f0..a21dde8540 100644 --- a/src/ext/ed25519/ref10/randombytes.h +++ b/src/ext/ed25519/ref10/randombytes.h @@ -1,4 +1,4 @@ /* Added for Tor. */ -#include "crypto.h" +#include "crypto_rand.h" #define randombytes(b, n) \ (crypto_strongest_rand((b), (n)), 0) |