1 Star 0 Fork 0

灵狐/go-fox-edge-common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
HexUtils.go 379 Bytes
一键复制 编辑 原始数据 按行查看 历史
灵狐 提交于 2024-10-23 10:30 . 初始化仓库
package Hex
import (
"encoding/hex"
"strings"
)
func DecodeString(str interface{}) []byte {
if str == nil {
return make([]byte, 0)
}
str = strings.ReplaceAll(str.(string), " ", "")
bytes, err := hex.DecodeString(str.(string))
if err != nil {
return make([]byte, 0)
}
return bytes
}
func EncodeToString(bytes []byte) string {
return hex.EncodeToString(bytes)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fierce_wolf/go-fox-edge-common.git
git@gitee.com:fierce_wolf/go-fox-edge-common.git
fierce_wolf
go-fox-edge-common
go-fox-edge-common
v1.0.0

搜索帮助