Class DESencrypter
- Namespace
- Dynamicweb.Security.SystemTools
- Assembly
- Dynamicweb.Core.dll
This class contains the functions used DES encryption.
public class DESencrypter
- Inheritance
-
DESencrypter
- Inherited Members
Methods
Decrypt(byte[])
Decrypts the input encrypted array.
public static string Decrypt(byte[] encrypted)
Parameters
encryptedbyte[]Encrypted array of bytes.
Returns
- string
Decrypted array converted from byte to string.
Encrypt(string)
Encrypts the input value using DES algorithm.
public static byte[] Encrypt(string value)
Parameters
valuestringInput value.
Returns
- byte[]
Encrypted array of bytes.