Crypter.CheckPassword Method (Byte[], String)

CryptSharp

CrypterCheckPassword Method (Byte, String) CryptSharp
Checks if the crypted password matches the given password bytes.

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

public static bool CheckPassword(
	byte[] password,
	string cryptedPassword
)
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 

Parameters

password
Type: SystemByte
The password bytes to test.
cryptedPassword
Type: SystemString
The crypted password.

Return Value

Type: Boolean
true if the passwords match.
See Also

Reference