CipherVerifyPasswordHash Method
Verifies the given user password against a given hash.
Namespace: Gemstone.Security.CryptographyAssembly: Gemstone.Security (in Gemstone.Security.dll) Version: 1.0.150 -- Release Build+f338bf935a1b4ee13b6f645d7fa25793d53e09de
public static bool VerifyPasswordHash(
string hash,
string password,
int categoryID = 0
)
Public Shared Function VerifyPasswordHash (
hash As String,
password As String,
Optional categoryID As Integer = 0
) As Boolean
public:
static bool VerifyPasswordHash(
String^ hash,
String^ password,
int categoryID = 0
)
Gemstone.Security.Cryptography.Cipher.VerifyPasswordHash = function(hash, password, categoryID);
- hash String
- Stored hash.
- password String
- User provide password.
- categoryID Int32 (Optional)
- Specifies the optional category ID.
Booleantrue if the given user password matches the stored hash; otherwise,
false.