Authenticate supplied message and return the hashed value
Namespace:
SnmpSharpNet
Assembly:
SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.7.1.0 (0.7.1.0)
Syntax
| C# |
|---|
public byte[] authenticateMessage(
byte[] data,
int offset,
int length
) |
| Visual Basic (Declaration) |
|---|
Public Function authenticateMessage ( _
data As Byte(), _
offset As Integer, _
length As Integer _
) As Byte() |
| Visual C++ |
|---|
public:
virtual array<unsigned char>^ authenticateMessage(
array<unsigned char>^ data,
int offset,
int length
) sealed |
Parameters
- data
- Type: array<
System..::.Byte
>[]()[]
Data to hash
- offset
- Type: System..::.Int32
Offset within the data to begin hashing from
- length
- Type: System..::.Int32
Length of data to hash
Return Value
Hashed value
Implements
IAuthenticationDigest..::.authenticateMessage(array<Byte>[]()[], Int32, Int32)
See Also