コード例 #1
0
 public static uint Compute(byte[] buffer)
 {
     return(CRC.Compute(uint.MaxValue, buffer));
 }
コード例 #2
0
 public static uint Compute(uint seed, byte[] buffer)
 {
     return(CRC.Compute(0xedb88320, seed, buffer));
 }
コード例 #3
0
ファイル: CRC.cs プロジェクト: vuonglequoc/MU-Launcher
 public static uint Compute(uint seed, byte[] buffer)
 {
     return(CRC.Compute(3988292384U, seed, buffer));
 }