From 7759ac8df2944aa58fff4152dd2c4c521f78ef10 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Tue, 20 Feb 2018 19:59:09 +0000 Subject: [PATCH] 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 3f7884b12e..4177893414 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)