| 123456789101112131415161718 |
- package password
- import (
- "crypto/md5"
- "encoding/hex"
- )
- // Encode 对密码两次md5加盐
- func Encode(password string) string {
- encodePwd := Md5Encode(Md5Encode(password+"pmail") + "pmail2023")
- return encodePwd
- }
- func Md5Encode(str string) string {
- h := md5.New()
- h.Write([]byte(str))
- return hex.EncodeToString(h.Sum(nil))
- }
|