C# Class bitmessage.Crypto.ECDSA

ファイルを表示 Open project: sharpbitmessage/SharpBitmessage

Public Methods

Method Description
ECDSASign ( this data, byte privKey ) : byte[]
ECDSAVerify ( this data, byte publicSigningKey, byte signature ) : bool
PointMult ( byte secret ) : byte[]

Private Methods

Method Description
Encrypt ( byte data, byte pubkey ) : byte[]
get_blocksize ( string ciphername ) : int

Method Details

ECDSASign() public static method

public static ECDSASign ( this data, byte privKey ) : byte[]
data this
privKey byte
return byte[]

ECDSAVerify() public static method

public static ECDSAVerify ( this data, byte publicSigningKey, byte signature ) : bool
data this
publicSigningKey byte
signature byte
return bool

PointMult() public static method

public static PointMult ( byte secret ) : byte[]
secret byte
return byte[]