Decrypts a string using DES encryption and a pass key that was used for encryption.
public static string DecryptString(string decryptString, Byte[] encryptionKey, bool useBinHex)
Return Value
String
Parameters
decryptString
encryptionKey
useBinHex
Returns data in useBinHex format (12afb1c3f1). Otherwise base64 is returned
Overloads:
public static string DecryptString(string decryptString, string encryptionKey, bool useBinHex)
public static string DecryptString(string decryptString, SecureString encryptionKey, bool useBinHex)
See also:
Class wwEncrypt© West Wind Technologies, 1996-2024 • Updated: 06/29/24
Comment or report problem with topic