From 5fd92e0c9dea3f1ec5ac519c60552410aea96070 Mon Sep 17 00:00:00 2001 From: hashlag Date: Fri, 23 Jan 2026 21:32:57 +0300 Subject: [PATCH] Fix long statement formatting --- Chaos/Cipher/Des/DesCrypt.hpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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); }