BattleNET.CRC32.CRC32 C# (CSharp) Method

CRC32() public method

public CRC32 ( UInt32 polynomial, UInt32 seed ) : System
polynomial System.UInt32
seed System.UInt32
return System
        public CRC32(UInt32 polynomial, UInt32 seed)
        {
            _table = InitializeTable(polynomial);
            _seed = seed;
            Initialize();
        }

Same methods

CRC32::CRC32 ( ) : System