ImageTools.CRC32Calculator._InternalComputeCrc32 C# (CSharp) Method

_InternalComputeCrc32() static private method

static private _InternalComputeCrc32 ( UInt32 W, byte B ) : Int32
W System.UInt32
B byte
return System.Int32
        internal static Int32 _InternalComputeCrc32(UInt32 W, byte B)
        {
            return (Int32)(crc32Table[(W ^ B) & 0xFF] ^ (W >> 8));
        }
        public void SlurpBlock(byte[] block)