 | EncryptionDESDecrypt Method |
Decrypt a DES encrypted message with a password.
Namespace:
Koden.Utils.Encryption
Assembly:
Koden.Utils.Encryption (in Koden.Utils.Encryption.dll) Version: 1.1.6453.26061
Syntaxpublic static string DESDecrypt(
string encryptedMessage,
string password
)
Public Shared Function DESDecrypt (
encryptedMessage As String,
password As String
) As String
public:
static String^ DESDecrypt(
String^ encryptedMessage,
String^ password
)
static member DESDecrypt :
encryptedMessage : string *
password : string -> string
Parameters
- encryptedMessage
- Type: SystemString
The encrypted message. - password
- Type: SystemString
The password.
Return Value
Type:
String[Missing <returns> documentation for "M:Koden.Utils.Encryption.Encryption.DESDecrypt(System.String,System.String)"]
See Also