Added new big from []bytes

poc8
obscuren 11 years ago
parent 9581faf5fd
commit f97716ebe2
  1. 9
      big.go

@ -24,3 +24,12 @@ func Big(num string) *big.Int {
return n return n
} }
/*
* Like big.NewInt(uint64); this takes a byte buffer instead.
*/
func BigD(data []byte) *big.Int {
n := new(big.Int)
n.SetBytes(data)
return n
}

Loading…
Cancel
Save