aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authorNanoAkron <nanoakron@users.noreply.github.com>2017-02-13 22:35:43 +0000
committerNanoAkron <nanoakron@users.noreply.github.com>2017-02-13 22:35:43 +0000
commit67693415ffacd91537a7007c6549340262e9f53c (patch)
treeaeb58d1c2b19085c0ded559adbaba0573fdfc074 /src/crypto
parentMerge pull request #1719 (diff)
downloadmonero-67693415ffacd91537a7007c6549340262e9f53c.tar.xz
Fix compiler error about nested externs in slow_hash.c by moving declarations
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/slow-hash.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/crypto/slow-hash.c b/src/crypto/slow-hash.c
index 43b9619f3..684c991bf 100644
--- a/src/crypto/slow-hash.c
+++ b/src/crypto/slow-hash.c
@@ -44,6 +44,9 @@
#define INIT_SIZE_BLK 8
#define INIT_SIZE_BYTE (INIT_SIZE_BLK * AES_BLOCK_SIZE)
+extern int aesb_single_round(const uint8_t *in, uint8_t*out, const uint8_t *expandedKey);
+extern int aesb_pseudo_round(const uint8_t *in, uint8_t *out, const uint8_t *expandedKey);
+
#if defined(__x86_64__) || (defined(_MSC_VER) && defined(_WIN64))
// Optimised code below, uses x86-specific intrinsics, SSE2, AES-NI
// Fall back to more portable code is down at the bottom
@@ -138,9 +141,6 @@
#define THREADV __thread
#endif
-extern int aesb_single_round(const uint8_t *in, uint8_t*out, const uint8_t *expandedKey);
-extern int aesb_pseudo_round(const uint8_t *in, uint8_t *out, const uint8_t *expandedKey);
-
#pragma pack(push, 1)
union cn_slow_hash_state
{