aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/slow-hash.c
diff options
context:
space:
mode:
authorredfish <redfish@galactica.pw>2016-09-18 02:54:30 -0400
committerredfish <redfish@galactica.pw>2016-09-18 02:56:26 -0400
commit54010b97b4739c50f32b3364a88a452625aa31c4 (patch)
tree09bf2e5f2e071a7d6387af686836d73cb6fb9edb /src/crypto/slow-hash.c
parentMerge pull request #1084 (diff)
downloadmonero-54010b97b4739c50f32b3364a88a452625aa31c4.tar.xz
crypto: armv7: slow-hash: remove redundant source include
aesb.c is already present in libcrypto as a standalone object. Tested: builds and runs fine on armv7, static and dynamic.
Diffstat (limited to 'src/crypto/slow-hash.c')
-rw-r--r--src/crypto/slow-hash.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c
index 90fda3470..2ac303a36 100644
--- a/src/crypto/slow-hash.c
+++ b/src/crypto/slow-hash.c
@@ -939,7 +939,6 @@ void cn_slow_hash(const void *data, size_t length, char *hash)
// ND: Some minor optimizations for ARMv7 (raspberrry pi 2), effect seems to be ~40-50% faster.
// Needs more work.
-#include "aesb.c"
#ifdef NO_OPTIMIZED_MULTIPLY_ON_ARM
/* The asm corresponds to this C code */