quorum/ethutil/big.go

61 lines
1.0 KiB
Go
Raw Normal View History

2014-02-14 14:56:09 -08:00
package ethutil
import (
"math/big"
)
var BigInt0 *big.Int = big.NewInt(0)
// True
var BigTrue *big.Int = big.NewInt(1)
// False
var BigFalse *big.Int = big.NewInt(0)
// Returns the power of two integers
func BigPow(a, b int) *big.Int {
c := new(big.Int)
c.Exp(big.NewInt(int64(a)), big.NewInt(int64(b)), big.NewInt(0))
return c
}
// Like big.NewInt(uint64); this takes a string instead.
func Big(num string) *big.Int {
n := new(big.Int)
n.SetString(num, 0)
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
}
2014-02-19 02:35:17 -08:00
func BigToBytes(num *big.Int, base int) []byte {
ret := make([]byte, base/8)
return append(ret[:len(ret)-len(num.Bytes())], num.Bytes()...)
}
2014-02-28 03:19:21 -08:00
// Functions like the build in "copy" function
// but works on big integers
func BigCopy(src *big.Int) (ret *big.Int) {
ret = new(big.Int)
ret.Add(ret, src)
return
}
2014-04-27 07:50:44 -07:00
func BigMax(x, y *big.Int) *big.Int {
if x.Cmp(y) <= 0 {
return x
}
return y
}