diff --git a/Chaos/Cipher/Des/DesCrypt.hpp b/Chaos/Cipher/Des/DesCrypt.hpp index 6d0f9a4..6e6584b 100644 --- a/Chaos/Cipher/Des/DesCrypt.hpp +++ b/Chaos/Cipher/Des/DesCrypt.hpp @@ -225,7 +225,10 @@ public: block[i] = *in; } - Block encrypted = DesCrypt::EncryptBlock(Inner_::Bitwise::PackUInt64(block.Begin(), block.End()), Schedule_); + Block encrypted + = DesCrypt::EncryptBlock(Inner_::Bitwise::PackUInt64(block.Begin(), + block.End()), + Schedule_); Inner_::Bitwise::CrunchUInt64(out, encrypted); }