Checks if the crypted password matches the given password bytes.
Namespace: CryptSharpAssembly: CryptSharp (in CryptSharp.dll) Version: 2.0.0.0
public static bool CheckPassword(
byte[] password,
string cryptedPassword
)
public static bool CheckPassword(
byte[] password,
string cryptedPassword
)
Public Shared Function CheckPassword ( _
password As Byte(), _
cryptedPassword As String _
) As Boolean
Public Shared Function CheckPassword ( _
password As Byte(), _
cryptedPassword As String _
) As Boolean
public:
static bool CheckPassword(
array<unsigned char>^ password,
String^ cryptedPassword
)
static member CheckPassword :
password : byte[] *
cryptedPassword : string -> bool
static member CheckPassword :
password : byte[] *
cryptedPassword : string -> bool
Return Value
true if the passwords match.