Discuss this help topic in SecureBlackbox Forum

TElSSHClass.KeyStorage

TElSSHClass     See also     


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


This property contains a list of user's host keys

Declaration

[C#]
    TElSSHCustomKeyStorage KeyStorage;

[VB.NET]
    Property KeyStorage As TElSSHCustomKeyStorage

[Pascal]
    property KeyStorage : TElSSHCustomKeyStorage;

[C++]
    TElSSHCustomKeyStorage* get_KeyStorage();
    void set_KeyStorage(TElSSHCustomKeyStorage &Value);
    void set_KeyStorage(TElSSHCustomKeyStorage *Value);

[PHP]
    TElSSHCustomKeyStorage get_KeyStorage()
    void set_KeyStorage(TElSSHCustomKeyStorage $Value)

[Java]
    TElSSHCustomKeyStorage getKeyStorage();
    void setKeyStorage(TElSSHCustomKeyStorage Storage);

Parameters

  • Storage -

Description

    This property should contain a list of user's host keys. Host keys are needed by Rhosts, Public Key and Hostbased authentication types (the client host is authenticated using these keys). Set this property before calling the Open method.

Note, that SSH client will iterate through the list of keys until the key which the server "knows" will be found. Every "unknown" key will fire a OnAuthenticationFailed event.

See also:     TElSSHCustomKeyStorage     TElSSHMemoryKeyStorage    

Discuss this help topic in SecureBlackbox Forum