C# 클래스 Renci.SshNet.Security.Key

Base class for asymmetric cipher algorithms
파일 보기 프로젝트 열기: sshnet/SSH.NET 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
_privateKey BigInteger[]

공개 메소드들

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

Signs the specified data with the key.

VerifySignature ( byte data, byte signature ) : bool

Verifies the signature.

보호된 메소드들

메소드 설명
Key ( ) : System

Initializes a new instance of the Key class.

Key ( byte data ) : System

Initializes a new instance of the Key class.

메소드 상세

Key() 보호된 메소드

Initializes a new instance of the Key class.
protected Key ( ) : System
리턴 System

Key() 보호된 메소드

Initializes a new instance of the Key class.
protected Key ( byte data ) : System
data byte DER encoded private key data.
리턴 System

Sign() 공개 메소드

Signs the specified data with the key.
public Sign ( byte data ) : byte[]
data byte The data to sign.
리턴 byte[]

VerifySignature() 공개 메소드

Verifies the signature.
public VerifySignature ( byte data, byte signature ) : bool
data byte The data to verify.
signature byte The signature to verify against.
리턴 bool

프로퍼티 상세

_privateKey 보호되어 있는 프로퍼티

Specifies array of big integers that represent private key
protected BigInteger[] _privateKey
리턴 BigInteger[]