Construct the CRC32 object

Namespace: LLCryptoLib.Hash
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public CRC32(
	uint aPolynomial,
	bool cacheTable
)
Visual Basic
Public Sub New ( _
	aPolynomial As UInteger, _
	cacheTable As Boolean _
)
Visual C++
public:
CRC32(
	unsigned int aPolynomial, 
	bool cacheTable
)

Parameters

aPolynomial
Type: System..::..UInt32
A polynomial.
cacheTable
Type: System..::..Boolean
if set to true uses cache table.

See Also