Click or drag to resize

SecurityUtilsHmacEncryptAndSign Method (Byte, Byte)

Encrypts and signs data with AES/HMACSHA-256.

Namespace:  PDTec.IceNet.Sdk.Utils
Assembly:  PDTec.IceNet.Sdk (in PDTec.IceNet.Sdk.dll) Version: 7.2.0.0 (7.2.7583.15464)
Syntax
C#
public static byte[] HmacEncryptAndSign(
	byte[] aKey,
	byte[] aData
)

Parameters

aKey
Type: SystemByte
The 256-bit (32 byte) AES/HMAC key.
aData
Type: SystemByte
The binary data to be encrypted and signed.

Return Value

Type: Byte
The signed and encrypred data.
See Also