DesCipher Decipher Method CryptSharp
Reverses the encipherment of 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 Decipher(
	byte[] inputBuffer,
	int inputOffset,
	byte[] outputBuffer,
	int outputOffset
)

Parameters

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