Click or drag to resize

CryptographyHelperDecode Method

Function which decodes or decrypts a given string based on a private key

Namespace:  WorkflowGen.My.Security
Assembly:  WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
public static string Decode(
	string encryptedValue,
	string privateKey
)

Parameters

encryptedValue
Type: SystemString
The string to decode or decrypt
privateKey
Type: SystemString
The private key to use

Return Value

Type: String
A decoded string if the private key is not provided (null or empty). Otherwise a decrypted string.
See Also