Class DigitalSignature
- Namespace
- Renci.SshNet.Security.Cryptography
- Assembly
- Renci.SshNet.dll
Base class for signature implementations.
public abstract class DigitalSignatureInheritance
Derived
Inherited Members
Methods
Sign(byte[])
Creates the signature.
public abstract byte[] Sign(byte[] input)Parameters
inputbyte[]-
The input.
Returns
- byte[]
-
Signed input data.
Verify(byte[], byte[])
Verifies the signature.
public abstract bool Verify(byte[] input, byte[] signature)