 | EncryptionTripleDESDecrypt Method |
Decrypts a TripleDES encrypted string.
Namespace:
Koden.Utils.Encryption
Assembly:
Koden.Utils.Encryption (in Koden.Utils.Encryption.dll) Version: 1.1.6453.26061
Syntaxpublic static string TripleDESDecrypt(
string cipherString,
string key,
bool useHashing,
byte[] iv,
CipherMode cMode,
PaddingMode pMode
)
Public Shared Function TripleDESDecrypt (
cipherString As String,
key As String,
useHashing As Boolean,
iv As Byte(),
cMode As CipherMode,
pMode As PaddingMode
) As String
public:
static String^ TripleDESDecrypt(
String^ cipherString,
String^ key,
bool useHashing,
array<unsigned char>^ iv,
CipherMode cMode,
PaddingMode pMode
)
static member TripleDESDecrypt :
cipherString : string *
key : string *
useHashing : bool *
iv : byte[] *
cMode : CipherMode *
pMode : PaddingMode -> string
Parameters
- cipherString
- Type: SystemString
The cipher string. - key
- Type: SystemString
The Security key. - useHashing
- Type: SystemBoolean
use hashing. - iv
- Type: SystemByte
The iv. - cMode
- Type: System.Security.CryptographyCipherMode
The cipher mode. - pMode
- Type: System.Security.CryptographyPaddingMode
The padding mode.
Return Value
Type:
String[Missing <returns> documentation for "M:Koden.Utils.Encryption.Encryption.TripleDESDecrypt(System.String,System.String,System.Boolean,System.Byte[],System.Security.Cryptography.CipherMode,System.Security.Cryptography.PaddingMode)"]
See Also