Discuss this help topic in SecureBlackbox Forum

TElIdSSHServerIOHandler.OnAuthPasswordChange

TElIdSSHServerIOHandler     See also     


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


This event is fired when client changed password as OnAuthPassword event required.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    property OnAuthPasswordChange: TSSHAuthPasswordChangeEvent;
    TSSHAuthPasswordChangeEvent = procedure(Sender : TObject; const Username : string; const OldPassword : string; const NewPassword : string; var Accept: boolean) of object;

[C++]
    not available

[PHP]
    not available

[Java]
    not available

Parameters

  • Username - the name of the client being authenticated
  • OldPassword - old password
  • NewPassword - new password
  • Accept - set this parameter to True if you agree to change password.

Description

    Gives us new password and old one for assurances.

See also:     OnAuthPasswordChange    

Discuss this help topic in SecureBlackbox Forum