Overload DecryptBlock() for the whole block as UInt64
All checks were successful
ChaosTest CI / build-and-test (push) Successful in 34s

This commit is contained in:
hashlag
2026-01-24 23:24:44 +03:00
parent 5a2d802a25
commit e8d0b93c5e
2 changed files with 49 additions and 0 deletions

View File

@@ -280,6 +280,11 @@ public:
Inner_::Bitwise::CrunchUInt64(out, decrypted);
}
uint64_t DecryptBlock(uint64_t block)
{
return DesCrypt::ProcessBlock(block, Schedule_);
}
private:
Inner_::KeySchedule Schedule_;
};