Compute() public static method

public static Compute ( UInt32 polynomial, UInt32 seed, byte buffer ) : UInt32
polynomial System.UInt32
seed System.UInt32
buffer byte
return System.UInt32
示例#1
0
文件: Crc32.cs 项目: zha0/Cerberus
 // Token: 0x060007D9 RID: 2009 RVA: 0x0003944C File Offset: 0x0003764C
 public static uint Compute(uint seed, byte[] buffer)
 {
     return(Crc32.Compute(3988292384u, seed, buffer));
 }
示例#2
0
文件: Crc32.cs 项目: zha0/Cerberus
 // Token: 0x060007D8 RID: 2008 RVA: 0x00039440 File Offset: 0x00037640
 public static uint Compute(byte[] buffer)
 {
     return(Crc32.Compute(uint.MaxValue, buffer));
 }