aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/big.go
blob: c41d63add6fc428160996a7f9c41cb4358842bf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
}

func BigToBytes(num *big.Int, base int) []byte {
    ret := make([]byte, base/8)

    return append(ret[:len(ret)-len(num.Bytes())], num.Bytes()...)
}