Discuss this help topic in SecureBlackbox Forum

TElIdSSHServerIOHandler.OnAuthPassword

TElIdSSHServerIOHandler     See also     


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


This event is fired when client requested and was accessed for password authentication.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    property OnAuthPassword: TSSHAuthPasswordEvent;
    
    TSSHAuthPasswordEvent = procedure(Sender : TObject; const Username : string; const Password : string; var Accept : boolean; var ForceChangePassword : boolean) of object;

[C++]
    not available

[PHP]
    not available

[Java]
    not available

Parameters

  • Username - the name of the client being authenticated
  • Password - string that client gives as password
  • Accept - set this parameter to True if password is all right.
  • ForceChangePassword - set this parameter to True if you want client to change the password

Description

    Gives password for checking.

See also:     OnAuthAttempt     OnAuthPasswordChange    

Discuss this help topic in SecureBlackbox Forum