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