Discuss this help topic in SecureBlackbox Forum

TElSSHClass.KexAlgorithmPriorities

TElSSHClass     See also     


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


Specifies priorities of different key exchange algorithms.

Declaration

[C#]
    int KexAlgorithmPriorities[short Index];

[VB.NET]
    Property KexAlgorithmPriorities(ByVal Index As Short) As Integer

[Pascal]
    property KexAlgorithmPriorities [Index : TSSHKexAlgorithm] : integer;
    TSSHKexAlgorithm = SSH_KEX_FIRST..SSH_KEX_LAST;

[C++]
    int32_t get_KexAlgorithmPriorities(uint8_t Index);
    void set_KexAlgorithmPriorities(uint8_t Index, int32_t Value);

[PHP]
    integer get_KexAlgorithmPriorities(integer $Index)
    void set_KexAlgorithmPriorities(integer $Index, integer $Value)

[Java]
    int getKexAlgorithmPriorities(short Index);
    void setKexAlgorithmPriorities(short Index, int Value);

Parameters

  • Index - index of the desired key exchange algorithm.

Values


Description

    Use this property to get or set priority values of the key exchange algorithms. The higher is this value, the more preferred is the algorithm.

See also:     KexAlgorithms    

Discuss this help topic in SecureBlackbox Forum