1 Star 0 Fork 0

凡卡 / keystore

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mnemonic.go 322 Bytes
一键复制 编辑 原始数据 按行查看 历史
凡卡 提交于 2023-06-15 21:56 . 升级bip44
package derivation
import "github.com/tyler-smith/go-bip39"
func CreateMnemonic(bitSize int) (string, error) {
entropy, err := bip39.NewEntropy(bitSize) //128 12位 256 24位.
if err != nil {
return "", err
}
Mnemonic, err := bip39.NewMnemonic(entropy)
if err != nil {
return "", err
}
return Mnemonic, nil
}
Go
1
https://gitee.com/prestonTao/keystore.git
git@gitee.com:prestonTao/keystore.git
prestonTao
keystore
keystore
4dd003620b47

搜索帮助