1 Star 0 Fork 52

husheng/dongle

forked from dromara/dongle 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
hex.go 440 Bytes
一键复制 编辑 原始数据 按行查看 历史
gouguoyin 提交于 2022-05-19 19:39 . v0.1.0 hex 编码、解码
package dongle
import (
"encoding/hex"
)
// ByHex encodes by hex.
// 通过 hex 编码
func (e encode) ByHex() encode {
buf := make([]byte, hex.EncodedLen(len(e.src)))
hex.Encode(buf, e.src)
e.dst = buf
return e
}
// ByHex decodes by hex.
// 通过 hex 解码
func (d decode) ByHex() decode {
buf := make([]byte, hex.DecodedLen(len(d.src)))
n, err := hex.Decode(buf, d.src)
if n > 0 {
d.dst = buf
}
d.Error = err
return d
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/husheng888/dongle.git
git@gitee.com:husheng888/dongle.git
husheng888
dongle
dongle
master

搜索帮助