Discuss this help topic in SecureBlackbox Forum

TElSSHClass.KexAlgorithm

TElSSHClass     See also     


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


This property returns the key exchange algorithm used during the SSH handshake.

Declaration

[C#]
    short KexAlgorithm;

[VB.NET]
    Property KexAlgorithm As Short

[Pascal]
    property KexAlgorithm : TSSHKexAlgorithm;
    TSSHKexAlgorithm = SSH_KEX_FIRST..SSH_KEX_LAST;

[C++]
    uint8_t get_KexAlgorithm();

[PHP]
    integer get_KexAlgorithm()

[Java]
    boolean getKexAlgorithm(short Index);
    short getKexAlgorithm();
    void setKexAlgorithm(short Index, boolean Value);

Parameters

  • Index - the index of the desired item in the list, starting from 0.

Values


Description

    Check this property after the OnOpenConnection event was fired. This property returns the key exchange algorithm which was used to establish the secure session.

See also:     KexAlgorithms    

Discuss this help topic in SecureBlackbox Forum