commit 7759ac8df2944aa58fff4152dd2c4c521f78ef10 Author: Isis Lovecruft isis@torproject.org Date: Tue Feb 20 19:59:09 2018 +0000
crypto: Remove crypto_rsa.h from crypto_digest.c.
* ADD include for "crypto_openssl_mgt.h" so that we have OpenSSL defined SHA* types and functions. * FIXES part of #24658: https://bugs.torproject.org/24658#comment:30 --- src/common/crypto_digest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/common/crypto_digest.c b/src/common/crypto_digest.c index 3f7884b12..417789341 100644 --- a/src/common/crypto_digest.c +++ b/src/common/crypto_digest.c @@ -13,7 +13,7 @@ #include "crypto_digest.h"
#include "crypto.h" /* common functions */ -#include "crypto_rsa.h" +#include "crypto_openssl_mgt.h"
DISABLE_GCC_WARNING(redundant-decls)
tor-commits@lists.torproject.org