Builds a crc32 table given a polynomial
Namespace: LLCryptoLib.HashAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
protected static uint[] BuildCRC32Table(
uint ulPolynomial
) |
Visual Basic |
---|
Protected Shared Function BuildCRC32Table ( _
ulPolynomial As UInteger _
) As UInteger() |
Visual C++ |
---|
protected:
static array<unsigned int>^ BuildCRC32Table(
unsigned int ulPolynomial
) |
Parameters
- ulPolynomial
- Type: System..::..UInt32
A polynomial input
Return Value
The CRC32 table as an array of integers
See Also