-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathbase58.go
68 lines (56 loc) · 1.46 KB
/
base58.go
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Package base58 implements a human-friendly base58 encoding.
//
// As opposed to base64 and friends, base58 is typically used to
// convert integers. You can use big.Int.SetBytes to convert arbitrary
// bytes to an integer first, and big.Int.Bytes the other way around.
package base58
import (
"math/big"
"strconv"
)
const alphabet = "123456789abcdefghijkmnopqrstuvwxyzABCDEFGHJKLMNPQRSTUVWXYZ"
var decodeMap [256]*big.Int
var (
// constant-like variables
radix = big.NewInt(58)
zero = big.NewInt(0)
)
func init() {
for i := 0; i < len(alphabet); i++ {
decodeMap[alphabet[i]] = big.NewInt(int64(i))
}
}
type CorruptInputError int64
func (e CorruptInputError) Error() string {
return "illegal base58 data at input byte " + strconv.FormatInt(int64(e), 10)
}
// Decode a big integer from the bytes. Returns an error on corrupt
// input.
func DecodeToBig(src []byte) (*big.Int, error) {
n := new(big.Int)
for i, c := range src {
b := decodeMap[c]
if b == nil {
return nil, CorruptInputError(i)
}
n.Mul(n, radix)
n.Add(n, b)
}
return n, nil
}
// Encode encodes src, appending to dst. Be sure to use the returned
// new value of dst.
func EncodeBig(dst []byte, src *big.Int) []byte {
start := len(dst)
n := new(big.Int)
n.Set(src)
for n.Cmp(zero) > 0 {
mod := new(big.Int)
n.DivMod(n, radix, mod)
dst = append(dst, alphabet[mod.Int64()])
}
for i, j := start, len(dst)-1; i < j; i, j = i+1, j-1 {
dst[i], dst[j] = dst[j], dst[i]
}
return dst
}