DesCipherEncipher 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.1.0.0
Syntax
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: 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
Parameters
- inputBuffer
- Type: SystemByte
The buffer to read plaintext data from. - inputOffset
- Type: SystemInt32
The offset of the first plaintext byte. - outputBuffer
- Type: SystemByte
The buffer to write enciphered data to. - outputOffset
- Type: SystemInt32
The offset at which to place the first enciphered byte.
See Also