<PackageReference Include="SSH.NET" Version="2016.0.0-beta3" />

CipherPadding

public abstract class CipherPadding
Base class for cipher padding implementations
namespace Renci.SshNet.Security.Cryptography.Ciphers { public abstract class CipherPadding { public abstract byte[] Pad(int blockSize, byte[] input); public abstract byte[] Pad(byte[] input, int length); } }