Authenticate packet and return authentication parameters value to the caller
Namespace:
SnmpSharpNet
Assembly:
SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.7.1.0 (0.7.1.0)
Syntax
| C# |
|---|
public byte[] authenticate(
byte[] authenticationSecret,
byte[] engineId,
byte[] wholeMessage
) |
| Visual Basic (Declaration) |
|---|
Public Function authenticate ( _
authenticationSecret As Byte(), _
engineId As Byte(), _
wholeMessage As Byte() _
) As Byte() |
| Visual C++ |
|---|
public:
virtual array<unsigned char>^ authenticate(
array<unsigned char>^ authenticationSecret,
array<unsigned char>^ engineId,
array<unsigned char>^ wholeMessage
) sealed |
Parameters
- authenticationSecret
- Type: array<
System..::.Byte
>[]()[]
User authentication secret
- engineId
- Type: array<
System..::.Byte
>[]()[]
SNMP agent authoritative engine id
- wholeMessage
- Type: array<
System..::.Byte
>[]()[]
Message to authenticate
Return Value
Authentication parameters value
Implements
IAuthenticationDigest..::.authenticate(array<Byte>[]()[], array<Byte>[]()[], array<Byte>[]()[])
See Also