Renci.SshNet.Security.Cryptography.CipherDigitalSignature
Implements digital signature where where asymmetric cipher is used,
namespace Renci.SshNet.Security.Cryptography
{
public abstract class CipherDigitalSignature : DigitalSignature
{
protected CipherDigitalSignature(ObjectIdentifier oid, AsymmetricCipher cipher);
protected abstract byte[] Hash(byte[] input);
protected byte[] DerEncode(byte[] hashData);
}
}