mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
stupid signed arithmetic.
This commit is contained in:
parent
8bc032ed09
commit
537b911af1
1 changed files with 3 additions and 6 deletions
|
@ -54,7 +54,9 @@ namespace crypto
|
|||
w2 = wordsMap.at(wlist[i*3 + 1]);
|
||||
w3 = wordsMap.at(wlist[i*3 + 2]);
|
||||
|
||||
val = w1 + n * ((w2 - w1) % n) + n * n * ((w3 - w2) % n);
|
||||
val = w1 + n * (((n - w1) + w2) % n) + n * n * (((n - w2) + w3) % n);
|
||||
|
||||
if (!(val % n == w1)) return false;
|
||||
|
||||
memcpy(dst.data + i * 4, &val, 4); // copy 4 bytes to position
|
||||
}
|
||||
|
@ -67,11 +69,6 @@ namespace crypto
|
|||
wlist_copy += words;
|
||||
}
|
||||
|
||||
std::string back_to_words;
|
||||
bytes_to_words(dst, back_to_words);
|
||||
|
||||
assert(wlist_copy == back_to_words); // sanity check
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue