mirror of
https://github.com/RGBCube/serenity
synced 2026-01-13 07:31:00 +00:00
Currently, we get the following results
-1 - -2 = -1
-2 - -1 = 1
Correct would be:
-1 - -2 = 1
-2 - -1 = -1
This was already attempted to be fixed in
|
||
|---|---|---|
| .. | ||
| CMakeLists.txt | ||
| TestAES.cpp | ||
| TestBigInteger.cpp | ||
| TestChecksum.cpp | ||
| TestHash.cpp | ||
| TestHMAC.cpp | ||
| TestRSA.cpp | ||