Table of Contents

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

List<byte>

Passphrase

Passphrase for encryption

public string Passphrase { set; }

Property Value

string

Salt

Salt value for encryption

public List<byte> Salt { set; }

Property Value

List<byte>

Methods

Decrypt(string)

Decrypts the specified text

public string Decrypt(string text)

Parameters

text string

Text to decrypt

Returns

string

Decrypted text

Encrypt(string)

Encrypts the specified text

public string Encrypt(string text)

Parameters

text string

Text to encrypt

Returns

string

Encrypted text