Discuss this help topic in SecureBlackbox Forum

TElSSHBaseClient.EncryptionAlgorithms

TElSSHBaseClient     See also     


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


This property specifies encryption algorithms which can be used during the SSH connection.

Declaration

[C#]
    bool EncryptionAlgorithms[short Index];

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

[Pascal]
    property EncryptionAlgorithms[Index : TSSHEncryptionAlgorithm] : boolean;

[C++]
    bool get_EncryptionAlgorithms(uint8_t Index);
    void set_EncryptionAlgorithms(uint8_t Index, bool Value);

[PHP]
    bool get_EncryptionAlgorithms(integer $Index)
    void set_EncryptionAlgorithms(integer $Index, bool $Value)

[Java]
    not available

Parameters

  • Index - index of the encryption algorithm.
  • Value - enables or disables the desired algorithm.

Values

Description

Set this property before opening the connection to define which block encryption algorithms are permitted. By default, all encryption algorithms are enabled. Note, that not all algorithms listed above are supported by SSHv1 protocol.

Discuss this help topic in SecureBlackbox Forum