Beispiel #1
0
 public static long CalculateChecksum(byte[] data)
 {
     CRC32 sum = new CRC32();
     return (long)sum.ByteCRC(ref data);
 }