Discuss this help topic in SecureBlackbox Forum

TElSSHClass.PublicKeyAlgorithmPriorities

TElSSHClass     See also     


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


Specifies priorities of different public key algorithms.

Declaration

[C#]
    int PublicKeyAlgorithmPriorities[short Index];

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

[Pascal]
    property PublicKeyAlgorithmPriorities [Index : TSSHPublicKeyAlgorithm] : integer;
    TSSHPublicKeyAlgorithm = SSH_PK_FIRST..SSH_PK_LAST;

[C++]
    int32_t get_PublicKeyAlgorithmPriorities(uint8_t Index);
    void set_PublicKeyAlgorithmPriorities(uint8_t Index, int32_t Value);

[PHP]
    integer get_PublicKeyAlgorithmPriorities(integer $Index)
    void set_PublicKeyAlgorithmPriorities(integer $Index, integer $Value)

[Java]
    int getPublicKeyAlgorithmPriorities(short Index);
    void setPublicKeyAlgorithmPriorities(short Index, int Value);

Parameters

  • Index - index of the desired public key algorithm.

Values

Description

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

See also:     PublicKeyAlgorithm     PublicKeyAlgorithms    

Discuss this help topic in SecureBlackbox Forum