Discuss this help topic in SecureBlackbox Forum

TElSSHBaseClient.PublicKeyAlgorithms

TElSSHBaseClient     


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


Defines which public key algorithms are allowed during the SSH handshake.

Declaration

[C#]
    bool PublicKeyAlgorithms[short Index];

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

[Pascal]
    property PublicKeyAlgorithms[Index : TSSHPublicKeyAlgorithm] : boolean;

[C++]
    bool get_PublicKeyAlgorithms(uint8_t Index);
    void set_PublicKeyAlgorithms(uint8_t Index, bool Value);

[PHP]
    bool get_PublicKeyAlgorithms(integer $Index)
    void set_PublicKeyAlgorithms(integer $Index, bool $Value)

[Java]
    not available

Parameters

  • Index - index of the public key algorithm.
  • Value - enable or disable the desired algorithm.

Values

Description

Set this property before opening the SSH connection to define the public key algorithms allowed for use while establishing the SSH session.

Discuss this help topic in SecureBlackbox Forum