Discuss this help topic in SecureBlackbox Forum

TElBCrypt.CheckPassword

TElBCrypt     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Validates the password.

Declaration

[C#]
    static bool CheckPassword(string Password, string EncryptedPassword);

[VB.NET]
    Shared Function CheckPassword(ByVal Password As String, ByVal EncryptedPassword As String) As Boolean

[Pascal]
    class function CheckPassword(const Password, EncryptedPassword : string) : boolean;

[C++]
    static bool CheckPassword(const std::string &Password, const std::string &EncryptedPassword);

[PHP]
    bool CheckPassword(string $Password, string $EncryptedPassword)

[Java]
    static boolean checkPassword(TElBCrypt> this, String Password, String EncryptedPassword);

Parameters

  • Password - the password that should be checked.
  • EncryptedPassword - the encrypted password.

Return value

    Returns True if Password matches the encrypred password, and False otherwise.

Description

    Use this method to check if certain password value matches the encrypted password.

See also:     EncryptPassword    

Discuss this help topic in SecureBlackbox Forum