Flip endianness of CRC32 checksums

This commit is contained in:
YoshiRulz 2021-11-19 00:48:35 +10:00
parent c636c01424
commit 8849134d50
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 4 additions and 1 deletions

View File

@ -16,7 +16,10 @@ namespace BizHawk.Common
internal const string PREFIX = "CRC32";
public static byte[] BytesAsDigest(uint digest)
=> BitConverter.GetBytes(digest);
{
var a = BitConverter.GetBytes(digest);
return new[] { a[3], a[2], a[1], a[0] };
}
public static byte[] Compute(ReadOnlySpan<byte> data)
=> BytesAsDigest(CRC32.Calculate(data));