HmacTCompute(Byte, Byte) Method
Computes an HMAC using the specified secret key for the entire input data.
Namespace: SnapDB.SecurityAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public static byte[] Compute(
byte[] key,
byte[] data
)
Public Shared Function Compute (
key As Byte(),
data As Byte()
) As Byte()
public:
static array<unsigned char>^ Compute(
array<unsigned char>^ key,
array<unsigned char>^ data
)
SnapDB.Security.Hmac.Compute = function(key, data);
- key Byte
- The secret key for the HMAC computation.
- data Byte
- The input data to compute the HMAC over.
ByteThe computed HMAC as a byte array.