Enciphers 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 Encipher(
byte[] inputBuffer,
int inputOffset,
byte[] outputBuffer,
int outputOffset
)
public void Encipher(
byte[] inputBuffer,
int inputOffset,
byte[] outputBuffer,
int outputOffset
)
Public Sub Encipher ( _
inputBuffer As Byte(), _
inputOffset As Integer, _
outputBuffer As Byte(), _
outputOffset As Integer _
)
Public Sub Encipher ( _
inputBuffer As Byte(), _
inputOffset As Integer, _
outputBuffer As Byte(), _
outputOffset As Integer _
)
public:
void Encipher(
array<unsigned char>^ inputBuffer,
int inputOffset,
array<unsigned char>^ outputBuffer,
int outputOffset
)
member Encipher :
inputBuffer : byte[] *
inputOffset : int *
outputBuffer : byte[] *
outputOffset : int -> unit
member Encipher :
inputBuffer : byte[] *
inputOffset : int *
outputBuffer : byte[] *
outputOffset : int -> unit
Parameters
- inputBuffer
- Type: System Byte
The buffer to read plaintext data from.
- inputOffset
- Type: System Int32
The offset of the first plaintext byte.
- outputBuffer
- Type: System Byte
The buffer to write enciphered data to.
- outputOffset
- Type: System Int32
The offset at which to place the first enciphered byte.