加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
base58.go 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2022-11-20 21:39 . v0.1.2
package dongle
import (
"bytes"
"math/big"
)
const base58table = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz"
// ByBase58 encodes by base58.
// 通过 base58 编码
func (e encode) ByBase58() encode {
if len(e.src) == 0 {
return e
}
intBytes := big.NewInt(0).SetBytes(e.src)
int0, int58 := big.NewInt(0), big.NewInt(58)
for intBytes.Cmp(big.NewInt(0)) > 0 {
intBytes.DivMod(intBytes, int58, int0)
e.dst = append(e.dst, string2bytes(base58table)[int0.Int64()])
}
e.dst = reverseBytes(e.dst)
return e
}
// ByBase58 decodes by base58.
// 通过 base58 解码
func (d decode) ByBase58() decode {
if len(d.src) == 0 {
return d
}
bigInt := big.NewInt(0)
for _, v := range d.src {
index := bytes.IndexByte([]byte(base58table), v)
bigInt.Mul(bigInt, big.NewInt(58))
bigInt.Add(bigInt, big.NewInt(int64(index)))
}
d.dst = bigInt.Bytes()
return d
}
// reverses byte slice.
// 反转字节切片
func reverseBytes(b []byte) []byte {
for i := 0; i < len(b)/2; i++ {
b[i], b[len(b)-1-i] = b[len(b)-1-i], b[i]
}
return b
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化