mirror of
https://github.com/SabreTools/MPF.git
synced 2026-07-02 17:24:48 +00:00
Don't reverse the CRC32 output
This commit is contained in:
@@ -8,6 +8,7 @@
|
||||
- Fix errant space in variable name
|
||||
- Build number not job number
|
||||
- Use System.IO.Hashing for CRC32
|
||||
- Don't reverse the CRC32 output
|
||||
|
||||
### 2.6.6 (2023-10-04)
|
||||
|
||||
|
||||
@@ -127,7 +127,7 @@ namespace MPF.Core.Hashing
|
||||
switch (HashType)
|
||||
{
|
||||
case Hash.CRC32:
|
||||
return (_hasher as NonCryptographicHashAlgorithm).GetCurrentHash().Reverse().ToArray();
|
||||
return (_hasher as NonCryptographicHashAlgorithm).GetCurrentHash();
|
||||
|
||||
case Hash.MD5:
|
||||
case Hash.SHA1:
|
||||
|
||||
Reference in New Issue
Block a user