2 Star 0 Fork 0

BOBO/创想空间核心工具库

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
encrypt_md5.go 965 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhouyp 提交于 2024-06-20 18:06 . feat:提交consts/enums/pkg
package encrypt
import (
"crypto/md5"
"fmt"
"github.com/gogf/gf/v2/errors/gerror"
"github.com/gogf/gf/v2/util/gconv"
)
type Md5 struct {
bytes []byte
}
// EncryptBytes 使用Md5加密
func (m Md5) EncryptBytes() (string, error) {
h := md5.New()
// 写入数据
if _, err := h.Write(m.bytes); err != nil {
return "", gerror.New(`hash.Write failed`)
}
// 拼接秘传
return fmt.Sprintf(`%x`, h.Sum(nil)), nil
}
// EncryptString 使用Md5加密
func (m Md5) EncryptString(s string) (string, error) {
m.bytes = []byte(s)
return m.EncryptBytes()
}
// MustEncryptString 使用Md5加密
func (m Md5) MustEncryptString(s string) string {
hash, _ := m.EncryptString(s)
return hash
}
// Encrypt 使用Md5加密
func (m Md5) Encrypt(data interface{}) (string, error) {
m.bytes = gconv.Bytes(data)
return m.EncryptBytes()
}
// MustEncrypt 使用Md5加密
func (m Md5) MustEncrypt(data interface{}) string {
hash, _ := m.Encrypt(data)
return hash
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/bobo-rs/creative-framework.git
git@gitee.com:bobo-rs/creative-framework.git
bobo-rs
creative-framework
创想空间核心工具库
v1.0.7

搜索帮助