Class CryptHelper.TripleDES
- Namespace
- SunamoCrypt
- Assembly
- SunamoCrypt.dll
DES use length of key 56 bit which make it vunverable to hard attacks Very slow, AES/Rijandel is too much better
public class CryptHelper.TripleDES
- Inheritance
-
CryptHelper.TripleDES
- Inherited Members
- Extension Methods
Properties
InitializationVector
Initialization vector for encryption
public List<byte> InitializationVector { set; }
Property Value
Passphrase
Passphrase for encryption
public string Passphrase { set; }
Property Value
Salt
Salt value for encryption
public List<byte> Salt { set; }
Property Value
Methods
Decrypt(string)
Decrypts the specified text
public string Decrypt(string text)
Parameters
textstringText to decrypt
Returns
- string
Decrypted text
Encrypt(string)
Encrypts the specified text
public string Encrypt(string text)
Parameters
textstringText to encrypt
Returns
- string
Encrypted text