From c955257c4ad4118c30ee757ffc00599379ad3f7c Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sat, 4 Aug 2018 16:20:44 +0000 Subject: [PATCH] electrum-words: fix bytes_to_words on big endian Reported by cslashm --- src/mnemonics/electrum-words.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mnemonics/electrum-words.cpp b/src/mnemonics/electrum-words.cpp index 290f2cb93..3d6338856 100644 --- a/src/mnemonics/electrum-words.cpp +++ b/src/mnemonics/electrum-words.cpp @@ -47,6 +47,7 @@ #include "misc_language.h" #include "crypto/crypto.h" // for declaration of crypto::secret_key #include +#include "common/int-util.h" #include "mnemonics/electrum-words.h" #include #include @@ -411,7 +412,7 @@ namespace crypto { uint32_t w[4]; - memcpy(&w[0], src + (i * 4), 4); + w[0] = SWAP32LE(*(const uint32_t*)(src + (i * 4))); w[1] = w[0] % word_list_length; w[2] = ((w[0] / word_list_length) + w[1]) % word_list_length;