Method | Description | |
---|---|---|
Crypto ( ) : System |
Creates new crypto helper using current machine and user name as the symmetric key.
|
|
Crypto ( string key ) : System |
Creates new crypto helper using the specified symmetric key.
|
|
Decrypt ( string source ) : string |
Decrypts the specified encrypted string.
|
|
Encrypt ( string source ) : string |
Encrypts the specified source string.
|
public Crypto ( string key ) : System | ||
key | string | Symmetric encryption key. |
return | System |
public Decrypt ( string source ) : string | ||
source | string | Encrypted string to decrypt. |
return | string |
public Encrypt ( string source ) : string | ||
source | string | The string to encrypt. |
return | string |