Discuss this help topic in SecureBlackbox Forum

TElIdSSHServerIOHandler.OnAuthPublicKey

TElIdSSHServerIOHandler     See also     


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


This event is fired when client requested public key authentication.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    property OnAuthPublicKey: TSSHAuthPublicKeyEvent;
    
    TSSHAuthPublicKeyEvent = procedure(Sender : TObject; const Username : string; Key: TElSSHKey; var Accept : boolean) of object;

[C++]
    not available

[PHP]
    not available

[Java]
    not available

Parameters

  • Username - the name of the client being authenticated
  • Key - key sent by client for checking.
  • Accept - set this parameter to True if the key has been found in the correspondence list.

Description

    Gives us a key for checking. Handler have to check that the key corresponds Username by the list that server holds.

See also:     OnAuthPassword    

Discuss this help topic in SecureBlackbox Forum