Discuss this help topic in SecureBlackbox Forum

TElSSHClass.MacAlgorithmPriorities

TElSSHClass     See also     


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


Specifies priorities of different MAC algorithms.

Declaration

[C#]
    int MacAlgorithmPriorities[short Index];

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

[Pascal]
    property MACAlgorithmPriorities [Index : TSSHMACAlgorithm] : integer;
    TSSHMACAlgorithm = SSH_MA_FIRST..SSH_MA_LAST;

[C++]
    int32_t get_MacAlgorithmPriorities(uint8_t Index);
    void set_MacAlgorithmPriorities(uint8_t Index, int32_t Value);

[PHP]
    integer get_MacAlgorithmPriorities(integer $Index)
    void set_MacAlgorithmPriorities(integer $Index, integer $Value)

[Java]
    int getMacAlgorithmPriorities(short Index);
    void setMacAlgorithmPriorities(short Index, int Value);

Parameters

  • Index - index of the desired MAC algorithm.

Description

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

See also:     MACAlgorithms    

Discuss this help topic in SecureBlackbox Forum