AsymmetricCipher
Base class for asymmetric cipher implementations.
namespace Renci.SshNet.Security.Cryptography
{
public abstract class AsymmetricCipher : Cipher
{
public override byte MinimumSize => 0;
}
}