Exemple #1
0
 public bool Verify(uint256 hash, byte[] sig)
 {
     return(Verify(hash, ECDSASignature.FromDER(sig)));
 }
Exemple #2
0
 public MerkleNode(uint256 hash)
 {
     Hash   = hash;
     IsLeaf = true;
 }
Exemple #3
0
 public bool Verify(uint256 hash, ECDSASignature sig)
 {
     return(ECKey.Verify(hash, sig));
 }