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

Renci.SshNet.Security.Cryptography.Cipher

public abstract class Cipher
Base class for cipher implementation.
namespace Renci.SshNet.Security.Cryptography { public abstract class Cipher { public abstract byte MinimumSize { get; } public byte[] Encrypt(byte[] input); public abstract byte[] Encrypt(byte[] input, int offset, int length); public abstract byte[] Decrypt(byte[] input); public abstract byte[] Decrypt(byte[] input, int offset, int length); protected Cipher(); } }