C# 클래스 lageant.client.Models.Keystore

파일 보기 프로젝트 열기: bitbeans/lageant

Private Properties

프로퍼티 타입 설명
ConvertToByteArray byte[]

공개 메소드들

메소드 설명
GetKeyById ( byte id ) : Key

Try to retrieve a key by it`s key id.

GetKeyById ( string id ) : Key

Try to retrieve a key by it`s key id.

GetKeyByPrivateKey ( byte privateKey ) : Key

Try to retrieve a key by it`s private key.

GetKeyByPrivateKey ( string privateKey ) : Key

Try to retrieve a key by it`s private key.

GetKeyByPublicKey ( byte publicKey ) : Key

Try to retrieve a key by it`s public key.

GetKeyByPublicKey ( string publicKey ) : Key

Try to retrieve a key by it`s public key.

비공개 메소드들

메소드 설명
ConvertToByteArray ( string hex ) : byte[]

Convert hex into byte array.

메소드 상세

GetKeyById() 공개 메소드

Try to retrieve a key by it`s key id.
public GetKeyById ( byte id ) : Key
id byte A 8 byte key id.
리턴 Key

GetKeyById() 공개 메소드

Try to retrieve a key by it`s key id.
public GetKeyById ( string id ) : Key
id string A 8 byte key id (as hex).
리턴 Key

GetKeyByPrivateKey() 공개 메소드

Try to retrieve a key by it`s private key.
public GetKeyByPrivateKey ( byte privateKey ) : Key
privateKey byte A 32 byte private key.
리턴 Key

GetKeyByPrivateKey() 공개 메소드

Try to retrieve a key by it`s private key.
public GetKeyByPrivateKey ( string privateKey ) : Key
privateKey string A 32 byte private key (as hex).
리턴 Key

GetKeyByPublicKey() 공개 메소드

Try to retrieve a key by it`s public key.
public GetKeyByPublicKey ( byte publicKey ) : Key
publicKey byte A 32 byte public key.
리턴 Key

GetKeyByPublicKey() 공개 메소드

Try to retrieve a key by it`s public key.
public GetKeyByPublicKey ( string publicKey ) : Key
publicKey string A 32 byte public key (as hex).
리턴 Key