Discuss this help topic in SecureBlackbox Forum

TElSSHClass.KexAlgorithms

TElSSHClass     See also     


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


This property specifies the Key-Exchange algorithms which can 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;
    TSSHKexAlgorithm = SSH_KEX_FIRST..SSH_KEX_LAST;

[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 - index of the Key-Exchange algorithm.

Values


Description

    Set this property before calling the Open method. 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