The unified diff between revisions [dda7bbd7..] and [411e49ac..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'src/twofish.cpp'
#
#
# patch "src/twofish.cpp"
# from [4a94dcb5fcf19416e3f9cab663dd4604d8fbbb5e]
# to [a63f31f79a2e20ddb003250609f0363403404c55]
#
============================================================
--- src/twofish.cpp 4a94dcb5fcf19416e3f9cab663dd4604d8fbbb5e
+++ src/twofish.cpp a63f31f79a2e20ddb003250609f0363403404c55
@@ -90,7 +90,10 @@ void Twofish::dec(const byte in[], byte
B = rotate_right(B ^ Y, 1);
}
- C ^= round_key[0]; D ^= round_key[1]; A ^= round_key[2]; B ^= round_key[3];
+ C ^= round_key[0];
+ D ^= round_key[1];
+ A ^= round_key[2];
+ B ^= round_key[3];
store_le(out, C, D, A, B);
}