Initializes a new instance of the FNVParamters class.

Namespace: Classless.Hasher
Assembly: Classless.Hasher (in Classless.Hasher.dll) Version: 0.9.4179.24336

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: Classless.Hasher..::..FnvAlgorithmType
The FNV algorithm variation.

See Also