package ec256 import "math/big" func bigFromBase16(s string) *big.Int { n, _ := new(big.Int).SetString(s, 16) return n }