btcd/btcec/go.mod
Olaoluwa Osuntokun 65e4fc0dea
btcec/schnorr/musig2: update nonce generation to support optional inputs
In this commit, we update the nonce generation to support optional
parameters defined in the latest BIP draft. These parameters are
optional, but if specified my mitigate the effect of weak randomness
when generating the nonce.

Given the protocol doesn't require signers to prove how they generate
their nonces, this update is mainly to ensure strict spec compliance,
and is effectively optional.
2022-04-28 16:20:01 -07:00

12 lines
320 B
Modula-2

module github.com/btcsuite/btcd/btcec/v2
go 1.17
require (
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1
github.com/davecgh/go-spew v1.1.1
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1
golang.org/x/exp v0.0.0-20220426173459-3bcf042a4bf5
)
require github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect