diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/twofish.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/twofish.cpp b/src/twofish.cpp index 25359f635..f25891ebf 100644 --- a/src/twofish.cpp +++ b/src/twofish.cpp @@ -90,7 +90,10 @@ void Twofish::dec(const byte in[], byte out[]) const 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); } |