Click or drag to resize

SecurityUtilsAesDecrypt Method (String, SecurityUtilsBase64Variant, String)

Decrypts data using the 256-bit AES algorithm.

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[] AesDecrypt(
	string key,
	SecurityUtilsBase64Variant inputFormat,
	string encodedData
)

Parameters

key
Type: SystemString
The 256-bit (32 byte) AES key as a 64-char hex string.
inputFormat
Type: PDTec.IceNet.Sdk.UtilsSecurityUtilsBase64Variant
The base64 variant of the encoded data.
encodedData
Type: SystemString
The binary data to be decrypted as a base64-encoded string.

Return Value

Type: String
The decrypted data fields.
See Also