AmericasCup.Data.Crc32.Compute C# (CSharp) Метод

Compute() публичный статический Метод

public static Compute ( UInt32 polynomial, UInt32 seed, byte buffer ) : UInt32
polynomial System.UInt32
seed System.UInt32
buffer byte
Результат System.UInt32
        public static UInt32 Compute(UInt32 polynomial, UInt32 seed, byte[] buffer)
        {
            return ~CalculateHash(InitializeTable(polynomial), seed, buffer, 0, buffer.Length);
        }

Same methods

Crc32::Compute ( UInt32 seed, byte buffer ) : UInt32
Crc32::Compute ( byte buffer ) : UInt32