Decrypt Method
- Last UpdatedApr 15, 2025
- 1 minute read
Decrypts the specified value using the specified encryption key.
'Declaration
Public Shared Function Decrypt( _
ByVal valueToDecrypt As String, _
ByVal encryptionKey As String _
) As String
public static string Decrypt(
string valueToDecrypt,
string encryptionKey
)
public:
static String^ Decrypt(
String^ valueToDecrypt,
String^ encryptionKey
)
Parameters
- valueToDecrypt
- The value for decryption.
- encryptionKey
- The encryption key that serves as both the initialization vector and the key.
Return Value
The string that has not been encrypted.