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
)
Public Shared Function Decode (
encryptedValue As String,
privateKey As String
) As String
Parameters
- encryptedValue
- Type: SystemString
The string to decode or decrypt - privateKey
- Type: SystemString
The private key to use
Return Value
Type:
StringA decoded string if the private key is not provided (null or empty). Otherwise a decrypted string.
See Also