btcec: set curve name in CurveParams
Set curve name(secp256k1) in KoblitzCurve.CurveParams Fixes #1564
This commit is contained in:
parent
23d149cbfb
commit
8facfdd04d
1 changed files with 1 additions and 0 deletions
|
@ -930,6 +930,7 @@ func initS256() {
|
|||
secp256k1.Gx = fromHex("79BE667EF9DCBBAC55A06295CE870B07029BFCDB2DCE28D959F2815B16F81798")
|
||||
secp256k1.Gy = fromHex("483ADA7726A3C4655DA4FBFC0E1108A8FD17B448A68554199C47D08FFB10D4B8")
|
||||
secp256k1.BitSize = 256
|
||||
secp256k1.Name = "secp256k1"
|
||||
secp256k1.q = new(big.Int).Div(new(big.Int).Add(secp256k1.P,
|
||||
big.NewInt(1)), big.NewInt(4))
|
||||
secp256k1.H = 1
|
||||
|
|
Loading…
Reference in a new issue