C# Class Renci.SshNet.Security.Cryptography.DigitalSignature

Base class for signature implementations
Mostra file Open project: sshnet/SSH.NET

Public Methods

Method Description
Sign ( byte input ) : byte[]

Creates the signature.

Verify ( byte input, byte signature ) : bool

Verifies the signature.

Method Details

Sign() public abstract method

Creates the signature.
public abstract Sign ( byte input ) : byte[]
input byte The input.
return byte[]

Verify() public abstract method

Verifies the signature.
public abstract Verify ( byte input, byte signature ) : bool
input byte The input.
signature byte The signature.
return bool