Authenticate packet and return authentication parameters value to the caller

Namespace:  SnmpSharpNet
Assembly:  SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.5.0.0 (0.5.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public byte[] authenticate(
	byte[] authenticationSecret,
	byte[] engineId,
	byte[] wholeMessage
)
Public Function authenticate ( _
	authenticationSecret As Byte(), _
	engineId As Byte(), _
	wholeMessage As Byte() _
) As Byte()
public:
virtual array<unsigned char>^ authenticate(
	array<unsigned char>^ authenticationSecret, 
	array<unsigned char>^ engineId, 
	array<unsigned char>^ wholeMessage
) sealed

Parameters

authenticationSecret
array< Byte >[]()[]
User authentication secret
engineId
array< Byte >[]()[]
SNMP agent authoritative engine id
wholeMessage
array< Byte >[]()[]
Message to authenticate

Return Value

Authentication parameters value

Implements

IAuthenticationDigest..::.authenticate(array<Byte>[]()[], array<Byte>[]()[], array<Byte>[]()[])

See Also