CryptographyHelperDecrypt Method (String, String, Encoding) | 
 
            Function which decrypts a given string based on a private key
            
 
    Namespace: 
   WorkflowGen.My.Security
    Assembly:
   WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.7.2.0 (4.7.2.0)
Syntaxpublic static string Decrypt(
	string encryptedValue,
	string privateKey,
	Encoding encoding
)
Public Shared Function Decrypt ( 
	encryptedValue As String,
	privateKey As String,
	encoding As Encoding
) As String
Parameters
- encryptedValue
 - Type: SystemString
The string to decrypt - privateKey
 - Type: SystemString
The private key to use - encoding
 - Type: System.TextEncoding
The character encoding type 
Return Value
Type: 
StringA decrypted string
See Also