C# 클래스 Renci.SshNet.Security.Cryptography.DigitalSignature

Base class for signature implementations
파일 보기 프로젝트 열기: sshnet/SSH.NET

공개 메소드들

메소드 설명
Sign ( byte input ) : byte[]

Creates the signature.

Verify ( byte input, byte signature ) : bool

Verifies the signature.

메소드 상세

Sign() 공개 추상적인 메소드

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

Verify() 공개 추상적인 메소드

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