quorum/ethutil/big.go

79 lines
1.2 KiB
Go
Raw Normal View History

2014-02-14 14:56:09 -08:00
package ethutil
import (
"math/big"
)
// Big pow
//
// Returns the power of two big integers
2014-02-14 14:56:09 -08:00
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
}
// Big
//
// Shortcut for new(big.Int).SetString(..., 0)
2014-02-14 14:56:09 -08:00
func Big(num string) *big.Int {
n := new(big.Int)
n.SetString(num, 0)
return n
}
// BigD
//
// Shortcut for new(big.Int).SetBytes(...)
2014-02-14 14:56:09 -08:00
func BigD(data []byte) *big.Int {
n := new(big.Int)
n.SetBytes(data)
return n
}
2014-02-19 02:35:17 -08:00
// Big to bytes
//
// Returns the bytes of a big integer with the size specified by **base**
// Attempts to pad the byte array with zeros.
2014-02-19 02:35:17 -08:00
func BigToBytes(num *big.Int, base int) []byte {
ret := make([]byte, base/8)
if len(num.Bytes()) > base/8 {
return num.Bytes()
}
2014-02-19 02:35:17 -08:00
return append(ret[:len(ret)-len(num.Bytes())], num.Bytes()...)
}
2014-02-28 03:19:21 -08:00
// Big copy
//
// Creates a copy of the given big integer
func BigCopy(src *big.Int) *big.Int {
return new(big.Int).Set(src)
2014-02-28 03:19:21 -08:00
}
2014-04-27 07:50:44 -07:00
// Big max
//
// Returns the maximum size big integer
2014-04-27 07:50:44 -07:00
func BigMax(x, y *big.Int) *big.Int {
if x.Cmp(y) <= 0 {
return y
2014-04-27 07:50:44 -07:00
}
return x
2014-04-27 07:50:44 -07:00
}
// Big min
//
// Returns the minimum size big integer
func BigMin(x, y *big.Int) *big.Int {
if x.Cmp(y) >= 0 {
return y
}
return x
}