Renci.SshNet.Security.Key
Base class for asymmetric cipher algorithms.
namespace Renci.SshNet.Security
{
public abstract class Key
{
public abstract BigInteger[] Public { get; }
public abstract int KeyLength { get; }
public string Comment { get; set; }
public byte[] Sign(byte[] data);
public bool VerifySignature(byte[] data, byte[] signature);
protected Key();
}
}