Discuss this help topic in SecureBlackbox Forum

TElSSHClass.MacAlgorithms

TElSSHClass     See also     


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


This property specifies the MAC algorithms which can be used during SSH session

Declaration

[C#]
    bool MacAlgorithms[short Index];

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

[Pascal]
    property MacAlgorithms [Index : TSSHMacAlgorithm] : boolean;
    TSSHMacAlgorithm = SSH_MA_FIRST..SSH_MA_LAST;

[C++]
    bool get_MacAlgorithms(uint8_t Index);
    void set_MacAlgorithms(uint8_t Index, bool Value);

[PHP]
    bool get_MacAlgorithms(integer $Index)
    void set_MacAlgorithms(integer $Index, bool $Value)

[Java]
    not available

Parameters

  • Index - index of the MAC algorithm.

Values

Description

    Set this property before calling the Open method. It should contain the MAC (message authentication code) algorithms, which may be used through the SSH session.

See also:     MacAlgorithmClientToServer     MacAlgorithmServerToClient    

Discuss this help topic in SecureBlackbox Forum