Renci.SshNet.Security.Cryptography.BlockCipher
Base class for block cipher implementations.
namespace Renci.SshNet.Security.Cryptography
{
public abstract class BlockCipher : SymmetricCipher
{
public byte BlockSize { get; }
protected BlockCipher(byte[] key, byte blockSize, CipherMode mode, CipherPadding padding);
}
}