Skip to content
Snippets Groups Projects
Commit f57d8722 authored by Nick Mathewson's avatar Nick Mathewson :game_die:
Browse files

Fix the 0.3.4 part of bug 27781 (arm compilation)

Because with arm on OpenSSL <1.1 we don't define USE_EVP_AES_CTR, we
need to include crypto_util.h here.
parent e818a719
No related branches found
No related tags found
No related merge requests found
o Major bugfixes (compilation):
- Fix compilation on arm (and other less-used CPUs)
when compiling with OpenSSL before 1.1. Fixes bug 27781;
bugfix on 0.3.4.1-alpha.
......@@ -41,6 +41,7 @@ ENABLE_GCC_WARNING(redundant-decls)
#include "util.h"
#include "torlog.h"
#include "di_ops.h"
#include "crypto_util.h"
#ifdef ANDROID
/* Android's OpenSSL seems to have removed all of its Engine support. */
......@@ -407,4 +408,3 @@ aes_set_iv(aes_cnt_cipher_t *cipher, const uint8_t *iv)
}
#endif /* defined(USE_EVP_AES_CTR) */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment