Merge pull request #4726

91eaea9c mnemonics: fix words_to_bytes on big endian (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-11-06 14:53:40 +02:00
commit b60078d1b3
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 1 additions and 0 deletions

View File

@ -335,6 +335,7 @@ namespace crypto
return false;
}
w[0] = SWAP32LE(w[0]);
dst.append((const char*)&w[0], 4); // copy 4 bytes to position
memwipe(w, sizeof(w));
}