Gets the FNV hash.

Namespace: MonoSoftware.Core.Cryptography
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public static BigInteger GetHash(
	string value,
	int hashBitSize
)
Visual Basic
Public Shared Function GetHash ( 
	value As String,
	hashBitSize As Integer
) As BigInteger
Visual C++
public:
static BigInteger^ GetHash(
	String^ value, 
	int hashBitSize
)
F#
static member GetHash : 
        value : string * 
        hashBitSize : int -> BigInteger 

Parameters

value
Type: System..::..String
Value to hash
hashBitSize
Type: System..::..Int32
Hash bit size

Return Value

Type: BigInteger
Hashed value

See Also