Reverses the encipherment of eight bytes of data from one buffer and places the result in another buffer.
            
Namespace: CryptSharp.UtilityAssembly: CryptSharp (in CryptSharp.dll) Version: 2.0.0.0
public void Decipher(
	byte[] inputBuffer,
	int inputOffset,
	byte[] outputBuffer,
	int outputOffset
)
public void Decipher(
	byte[] inputBuffer,
	int inputOffset,
	byte[] outputBuffer,
	int outputOffset
)
Public Sub Decipher ( _
	inputBuffer As Byte(), _
	inputOffset As Integer, _
	outputBuffer As Byte(), _
	outputOffset As Integer _
)
Public Sub Decipher ( _
	inputBuffer As Byte(), _
	inputOffset As Integer, _
	outputBuffer As Byte(), _
	outputOffset As Integer _
)
public:
void Decipher(
	array<unsigned char>^ inputBuffer, 
	int inputOffset, 
	array<unsigned char>^ outputBuffer, 
	int outputOffset
)
member Decipher : 
        inputBuffer : byte[] * 
        inputOffset : int * 
        outputBuffer : byte[] * 
        outputOffset : int -> unitmember Decipher : 
        inputBuffer : byte[] * 
        inputOffset : int * 
        outputBuffer : byte[] * 
        outputOffset : int -> unitParameters
- inputBuffer
 - Type:  
System Byte 
The buffer to read enciphered data from. 
- inputOffset
 - Type: 
System Int32
The offset of the first enciphered byte. 
- outputBuffer
 - Type:  
System Byte 
The buffer to write plaintext data to. 
- outputOffset
 - Type: 
System Int32
The offset at which to place the first plaintext byte.