Compute hash using authentication protocol.
Namespace:
SnmpSharpNet
Assembly:
SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.7.1.0 (0.7.1.0)
Syntax
| C# |
|---|
public byte[] ComputeHash(
byte[] data,
int offset,
int count
) |
| Visual Basic (Declaration) |
|---|
Public Function ComputeHash ( _
data As Byte(), _
offset As Integer, _
count As Integer _
) As Byte() |
| Visual C++ |
|---|
public:
virtual array<unsigned char>^ ComputeHash(
array<unsigned char>^ data,
int offset,
int count
) sealed |
Parameters
- data
- Type: array<
System..::.Byte
>[]()[]
Data to hash
- offset
- Type: System..::.Int32
Compute hash from the source buffer offset
- count
- Type: System..::.Int32
Compute hash for source data length
Return Value
Hash value
Implements
IAuthenticationDigest..::.ComputeHash(array<Byte>[]()[], Int32, Int32)
See Also