Ejemplo n.º 1
0
 public ECDSASignature Sign(uint256 hash, bool useLowR)
 {
     AssertNotDisposed();
     return(_ECKey.Sign(hash, useLowR));
 }
Ejemplo n.º 2
0
 internal static Crypto.ECDSASignature Sign(this Secp256k1.ECPrivKey key, uint256 h, bool enforceLowR)
 {
     return(new Crypto.ECDSASignature(key.Sign(h, enforceLowR, out _)));
 }