Encodes a stream of bytes using DES encryption with a pass key. Lowest level method that handles all work.
public static Byte[] EncryptBytes(Byte[] inputBytes, string encryptionKey)
Parameters
inputBytes
encryptionKey
Overloads:
public static Byte[] EncryptBytes(Byte[] inputBytes, SecureString encryptionKey)
public static Byte[] EncryptBytes(Byte[] inputBytes, Byte[] encryptionKey, CipherMode cipherMode)
public static Byte[] EncryptBytes(string inputString, string encryptionKey)
See also:
Class Encryption© West Wind Technologies, 1996-2024 • Updated: 06/29/24
Comment or report problem with topic