namespace Renci.SshNet.Security.Cryptography { /// /// Base class for asymmetric cipher implementations. /// public abstract class AsymmetricCipher : Cipher { /// /// Gets the minimum data size. /// /// /// The minimum data size. /// public override byte MinimumSize { get { return 0; } } } }