You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
579 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
namespace Pathfinding.Util {
/// <summary>Calculates checksums of byte arrays</summary>
public class Checksum {
/// <summary>
/// Calculate checksum for the byte array starting from a previous values.
/// Useful if data is split up between several byte arrays
/// </summary>
public static uint GetChecksum (byte[] arr, uint hash) {
// Sort of implements the FowlerNollVo hash function
const int prime = 16777619;
hash ^= 2166136261U;
for (int i = 0; i < arr.Length; i++)
hash = (hash ^ arr[i]) * prime;
return hash;
}
}
}