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);
}
}