CrypterCheckPassword Method (String, String) | CryptSharp |
Checks if the crypted password matches the given password string.
Namespace: CryptSharp
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.1.0.0
Syntax
public static bool CheckPassword( string password, string cryptedPassword )
Public Shared Function CheckPassword ( password As String, cryptedPassword As String ) As Boolean
public: static bool CheckPassword( String^ password, String^ cryptedPassword )
static member CheckPassword : password : string * cryptedPassword : string -> bool
Parameters
- password
- Type: SystemString
The password string to test. Characters are UTF-8 encoded. - cryptedPassword
- Type: SystemString
The crypted password.
Return Value
Type: Booleantrue if the passwords match.
See Also