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

Renci.SshNet.Security.Cryptography.BlockCipher

public abstract class BlockCipher : SymmetricCipher
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); } } namespace Renci.SshNet.Security.Cryptography { public abstract class StreamCipher : SymmetricCipher { protected StreamCipher(byte[] key); } }