lbry.go/schema/address/base58/decode.go

40 lines
930 B
Go
Raw Normal View History

2017-09-12 18:02:30 +02:00
package base58
import (
"math/big"
"github.com/cockroachdb/errors"
2017-09-12 18:02:30 +02:00
)
func DecodeBase58(value string, size int64) ([]byte, error) {
buf := []byte(value)
2018-02-15 20:51:51 +01:00
longValue := big.NewInt(0)
2017-09-12 18:02:30 +02:00
result := make([]byte, size)
for i := int64(len(buf) - 1); i >= 0; i-- {
toAdd := big.NewInt(0)
toAdd = toAdd.Exp(big.NewInt(58), big.NewInt(i), toAdd)
c, err := CharacterIndex(buf[int64(len(buf))-i-1])
2017-09-12 18:02:30 +02:00
if err != nil {
return result, err
}
toAdd = toAdd.Mul(c, toAdd)
longValue = longValue.Add(toAdd, longValue)
2017-09-12 18:02:30 +02:00
}
for i := size - 1; i >= 0; i-- {
m := big.NewInt(0)
2018-02-15 20:51:51 +01:00
longValue, m = longValue.DivMod(longValue, big.NewInt(256), m)
2017-09-12 18:02:30 +02:00
bs := m.Bytes()
if len(bs) == 0 {
bs = append(bs, 0x00)
}
result[i] = bs[0]
2017-09-12 18:02:30 +02:00
}
2018-02-15 20:51:51 +01:00
if longValue.Int64() != 0 {
2017-09-12 18:02:30 +02:00
return result, errors.New("cannot decode to the given size")
}
if size != int64(len(result)) {
return result, errors.New("length mismatch")
}
2017-09-12 18:02:30 +02:00
return result, nil
}