Click or drag to resize

SecurityUtilsHmacEncryptAndSign Method (String, String)

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 string HmacEncryptAndSign(
	string key,
	params string[] aFields
)

Parameters

key
Type: SystemString
The 256-bit (32 byte) AES/HMAC key as a 64-char hex string.
aFields
Type: SystemString
The data fields to be encrypted and signed.

Return Value

Type: String
The signed and encrypred data as a base64-encoded string.
See Also