Crypter CheckPassword Method (String, String)CryptSharp
Checks if the crypted password matches the given password string.

Namespace: CryptSharp
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.0.0.0
Syntax

public static bool CheckPassword(
	string password,
	string cryptedPassword
)

Parameters

password
Type: OnlineSystem String
The password string to test. Characters are UTF-8 encoded.
cryptedPassword
Type: OnlineSystem String
The crypted password.

Return Value

true if the passwords match.
See Also