Ai
1 Star 1 Fork 0

李沐风岚/murphy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
b64.go 298 Bytes
一键复制 编辑 原始数据 按行查看 历史
U 提交于 2024-07-13 00:36 +08:00 . murphy
package encrypt
import (
"encoding/base64"
"github.com/rhettli/php2go/php"
)
func B64Str(b []byte) *string {
var p = php.Base64Encode(b)
return &p
}
func B64Bytes(b []byte) []byte {
dst := make([]byte, base64.StdEncoding.EncodedLen(len(b)))
base64.StdEncoding.Encode(dst, b)
return dst
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/oshine/murphy.git
git@gitee.com:oshine/murphy.git
oshine
murphy
murphy
v1.0.26

搜索帮助