CipherVerifyPasswordHash Method

Verifies the given user password against a given hash.

Definition

Namespace: Gemstone.Security.Cryptography
Assembly: Gemstone.Security (in Gemstone.Security.dll) Version: 1.0.147 -- Release Build+3014b8a0edc553e56f868ef31b6f0f5012f8db4f
public static bool VerifyPasswordHash(
	string hash,
	string password,
	int categoryID = 0
)

Parameters

hash  String
Stored hash.
password  String
User provide password.
categoryID  Int32  (Optional)
Specifies the optional category ID.

Return Value

Boolean
true if the given user password matches the stored hash; otherwise, false.

See Also