Renci.SshNet.Security.Cryptography.Ciphers.CipherMode
Base class for cipher mode implementations
namespace Renci.SshNet.Security.Cryptography.Ciphers
{
public abstract class CipherMode
{
protected BlockCipher Cipher;
protected byte[] IV;
protected int _blockSize;
protected CipherMode(byte[] iv);
public abstract int EncryptBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset);
public abstract int DecryptBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset);
}
}