Returns a hash key for use in encryption and decryption methods.

Namespace:  RedCritterServerV1.Encryption
Assembly:  RedCritterServerV1 (in RedCritterServerV1.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

      
 C#  Visual Basic 
public static string GetHashKey(
	string hash,
	string salt
)
Public Shared Function GetHashKey ( _
	hash As String, _
	salt As String _
) As String

Parameters

hash
String
Choose any hash string
salt
String
Salt must be at least 8 bytes long

Return Value

The generated HashKey for use in the Encrypt() and Decrypt() methods.

See Also