代码拉取完成,页面将自动刷新
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
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。