DesCipher Encipher Method CryptSharp
Enciphers eight bytes of data from one buffer and places the result in another buffer.

Namespace: CryptSharp.Utility
Assembly: CryptSharp (in CryptSharp.dll) Version: 2.0.0.0
Syntax

public void Encipher(
	byte[] inputBuffer,
	int inputOffset,
	byte[] outputBuffer,
	int outputOffset
)

Parameters

inputBuffer
Type:  OnlineSystem Byte 
The buffer to read plaintext data from.
inputOffset
Type: OnlineSystem Int32
The offset of the first plaintext byte.
outputBuffer
Type:  OnlineSystem Byte 
The buffer to write enciphered data to.
outputOffset
Type: OnlineSystem Int32
The offset at which to place the first enciphered byte.
See Also