mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 10:11:38 -06:00
4.59 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
3901bf0ab8
commit
173c07e166
@@ -14,9 +14,9 @@ class CData
|
||||
UInt32 Keys[4];
|
||||
UInt32 SubstLong(UInt32 t)
|
||||
{
|
||||
return (UInt32)SubstTable[(int)t & 255] |
|
||||
return (UInt32)SubstTable[(int)t & 255] |
|
||||
((UInt32)SubstTable[(int)(t >> 8) & 255] << 8) |
|
||||
((UInt32)SubstTable[(int)(t >> 16) & 255] << 16) |
|
||||
((UInt32)SubstTable[(int)(t >> 16) & 255] << 16) |
|
||||
((UInt32)SubstTable[(int)(t >> 24) & 255] << 24);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user