You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
652 B
39 lines
652 B
/**
|
|
* @Auth:ShenZ
|
|
* @Description:
|
|
* @CreateDate:2022/06/15 16:27:35
|
|
*/
|
|
package utils
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"encoding/hex"
|
|
"fmt"
|
|
"strings"
|
|
)
|
|
|
|
//小写
|
|
func Md5Encode(data string) string {
|
|
h := md5.New()
|
|
h.Write([]byte(data))
|
|
tempStr := h.Sum(nil)
|
|
return hex.EncodeToString(tempStr)
|
|
}
|
|
|
|
//大写
|
|
func MD5Encode(data string) string {
|
|
return strings.ToUpper(Md5Encode(data))
|
|
}
|
|
|
|
//加密
|
|
func MakePassword(plainpwd, salt string) string {
|
|
return Md5Encode(plainpwd + salt)
|
|
}
|
|
|
|
//解密
|
|
func ValidPassword(plainpwd, salt string, password string) bool {
|
|
md := Md5Encode(plainpwd + salt)
|
|
fmt.Println(md + " " + password)
|
|
return md == password
|
|
}
|