Click or drag to resize

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
Syntax
public static string TripleDESDecrypt(
	string cipherString,
	string key,
	bool useHashing,
	byte[] iv,
	CipherMode cMode,
	PaddingMode pMode
)

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