Discuss this help topic in SecureBlackbox Forum

TElSSHClass.PublicKeyAlgorithms

TElSSHClass     See also     


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


This property specifies the public key algorithms that can be used 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;
    TSSHPublicKeyAlgorithm = SSH_PK_FIRST..SSH_PK_LAST;

[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 - enables/disables the desired algorithm

Values

Description

    Set this property before calling the Open method. It specifies which public key algorithms may be used while establishing the SSH session.

See also:     PublicKeyAlgorithm    

Discuss this help topic in SecureBlackbox Forum