Remove some now-needless openssl includes from src/test.

It would appear that these includes weren't actually used.
This commit is contained in:
Nick Mathewson 2017-03-25 12:19:14 +01:00
parent a4964466a5
commit 706c44a6ce
3 changed files with 0 additions and 10 deletions

View File

@ -12,11 +12,8 @@
#if defined(HAVE_LIBSCRYPT_H) && defined(HAVE_LIBSCRYPT_SCRYPT)
#define HAVE_LIBSCRYPT
#include <libscrypt.h>
#endif
#include <openssl/evp.h>
/** Run unit tests for our secret-to-key passphrase hashing functionality. */
static void
test_crypto_s2k_rfc2440(void *arg)

View File

@ -14,12 +14,6 @@
#include "test.h"
DISABLE_GCC_WARNING(redundant-decls)
#include <openssl/rsa.h>
#include <openssl/bn.h>
#include <openssl/pem.h>
ENABLE_GCC_WARNING(redundant-decls)
#ifdef _WIN32
/* For mkdir() */
#include <direct.h>

View File

@ -11,7 +11,6 @@
#include "routerlist.h"
#include "config.h"
#include "hs_common.h"
#include <openssl/rsa.h>
#include "rend_test_helpers.h"
#include "log_test_helpers.h"