BlowfishCipherDecipher Method (Byte, Int32, Byte, Int32) | 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.1.0.0
Syntax
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: void Decipher( array<unsigned char>^ inputBuffer, int inputOffset, array<unsigned char>^ outputBuffer, int outputOffset )
member Decipher : inputBuffer : byte[] * inputOffset : int * outputBuffer : byte[] * outputOffset : int -> unit
Parameters
- inputBuffer
- Type: SystemByte
The buffer to read enciphered data from. - inputOffset
- Type: SystemInt32
The offset of the first enciphered byte. - outputBuffer
- Type: SystemByte
The buffer to write plaintext data to. - outputOffset
- Type: SystemInt32
The offset at which to place the first plaintext byte.
See Also