Discuss this help topic in SecureBlackbox Forum

TElIndySSHShellIOHandlerSocket.OnAuthenticationKeyboard

TElIndySSHShellIOHandlerSocket     See also     


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


This event is fired when the keyboard-interactive authentication type is chosen by server

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    property OnAuthenticationKeyboard : TSSHAuthenticationKeyboardEvent;
    TSSHAuthenticationKeyboardEvent = procedure (Sender: TObject; Prompts : TStringList; Echo : TBits; Responses : TStringList) of object;

[C++]
    not available

[PHP]
    not available

[Java]
    not available

Parameters

  • Prompts - The list of prompts sent by the server
  • Echo - The list of flags which specify which responses should be echoed on screen
  • Responses - The list of responses entered by user

Description

    This event is fired when the keyboard-interactive authentication type is chosen by server. According to this authentication type, server should send to client a number of prompts, and client should respond to each prompt with text line. The Echo parameter specifies which of client's responses (in case of entering them from console) should be displayed to him.

See also:     OnAuthenticationSuccess     OnAuthenticationFailed    

Discuss this help topic in SecureBlackbox Forum