Creates an instance of the specified implementation of HashAlgorithm.

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

Syntax

C#
public static HashAlgorithm Create(
	string hashName
)
Visual Basic
Public Shared Function Create ( _
	hashName As String _
) As HashAlgorithm
Visual C++
public:
static HashAlgorithm^ Create(
	String^ hashName
)

Parameters

hashName
Type: System..::..String
The implementation of HashAlgorithm to create.

Return Value

An instance of a cryptographic object to perform the hash algorithm.

See Also