Update 'libsharperang/CRC32.cs'

This commit is contained in:
Maff 2019-09-10 09:29:42 +00:00
parent d9df857328
commit 6d5e65bbfa
1 changed files with 0 additions and 1 deletions

View File

@ -7,7 +7,6 @@ namespace libsharperang {
private uint _Initial = 0xFFFFFFFF;
public uint Initial { get => ~_Initial; private set => _Initial=~value; }
private uint Polynomial = 0xedb88320;
//private uint Polynomial = 0x04c11db7;
private uint[] Table;
public bool Initialised=false;
public CRC32(uint Initial) => this.Initial=Initial;