<PackageReference Include="SSH.NET" Version="2020.0.2" />

Renci.SshNet.Security.Cryptography.Ciphers.CipherMode

public abstract class 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); } }