Initializes a new instance of the FNVParamters class.

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

Syntax

C#
public FNVParameters(
	int order,
	long prime,
	long offsetBasis,
	FNVAlgorithmType type
)
Visual Basic
Public Sub New ( _
	order As Integer, _
	prime As Long, _
	offsetBasis As Long, _
	type As FNVAlgorithmType _
)
Visual C++
public:
FNVParameters(
	int order, 
	long long prime, 
	long long offsetBasis, 
	FNVAlgorithmType type
)

Parameters

order
Type: System..::..Int32
The order of the FNV (e.g., how many bits).
prime
Type: System..::..Int64
The prime number to use in the FNV calculations.
offsetBasis
Type: System..::..Int64
The offset basis of the FNV.
type
Type: LLCryptoLib.Hash..::..FNVAlgorithmType
The FNV algorithm variation.

See Also