tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit a4c0a0e81eb3616d7d66806e9ac8ea7c8d3bf439
parent fdaa483098d723b4be24a4e861c4280a67a3d4b0
Author: Nick Mathewson <nickm@torproject.org>
Date:   Tue, 31 Jul 2018 19:56:42 -0400

Fix issues with crypto_ope compilation now that crypto.h is gone

Diffstat:
Msrc/lib/crypt_ops/crypto_ope.c | 2+-
Msrc/test/test_crypto_ope.c | 4+++-
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/lib/crypt_ops/crypto_ope.c b/src/lib/crypt_ops/crypto_ope.c @@ -18,8 +18,8 @@ #define CRYPTO_OPE_PRIVATE #include "lib/crypt_ops/crypto_ope.h" -#include "lib/crypt_ops/crypto.h" #include "lib/crypt_ops/crypto_util.h" +#include "lib/crypt_ops/crypto_cipher.h" #include "lib/log/util_bug.h" #include "lib/malloc/malloc.h" #include "lib/arch/bytes.h" diff --git a/src/test/test_crypto_ope.c b/src/test/test_crypto_ope.c @@ -7,9 +7,11 @@ #define CRYPTO_OPE_PRIVATE +#include "lib/cc/compat_compiler.h" #include "lib/crypt_ops/crypto_ope.h" -#include "lib/crypt_ops/crypto.h" +#include "lib/crypt_ops/crypto_cipher.h" #include "lib/encoding/binascii.h" +#include "lib/malloc/malloc.h" #include "test/test.h" #include "tinytest.h"