Discuss this help topic in SecureBlackbox Forum

TElSSHBaseClient.KexAlgorithms

TElSSHBaseClient     See also     


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


This property defines which Key Exchange algorithms could be used during SSH session.

Declaration

[C#]
    bool KexAlgorithms[short Index];

[VB.NET]
    Property KexAlgorithms(ByVal Index As Short) As Boolean

[Pascal]
    property KexAlgorithms[Index : TSSHKexAlgorithm] : boolean;

[C++]
    bool get_KexAlgorithms(uint8_t Index);
    void set_KexAlgorithms(uint8_t Index, bool Value);

[PHP]
    bool get_KexAlgorithms(integer $Index)
    void set_KexAlgorithms(integer $Index, bool $Value)

[Java]
    not available

Parameters

  • Index - specifies the Key Exchange algorithm.
  • Value - enables or disables the specified algorithm.

Values


Description

Set this property before opening SSH connection. This property specifies the key exchange algorithms which could be used to establish the secure session. The key exchange is needed to agree the shared secret key.

See also:     KexAlgorithm    

Discuss this help topic in SecureBlackbox Forum