protected override byte[] HashFinal() { byte[] numArray = Crc32.a22(~this.d); this.HashValue = numArray; return(numArray); }
public static uint Compute(uint polynomial, uint seed, byte[] buffer) { return(~Crc32.a22(Crc32.b_m_c(polynomial), seed, (IList <byte>)buffer, 0, buffer.Length)); }
protected override void HashCore(byte[] buffer, int start, int length) { this.d = Crc32.a22(this.c, this.d, (IList <byte>)buffer, start, length); }