12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- package password
- import (
- "crypto/hmac"
- "crypto/md5"
- "crypto/sha256"
- "encoding/hex"
- "fmt"
- )
- const (
- saltPassword = "qkhPAGA13HocW3GAEWwb"
- defaultPassword = "123456"
- )
- func GeneratePassword(str string) (password string) {
- // md5
- m := md5.New()
- m.Write([]byte(str))
- mByte := m.Sum(nil)
- // hmac
- h := hmac.New(sha256.New, []byte(saltPassword))
- h.Write(mByte)
- password = hex.EncodeToString(h.Sum(nil))
- return
- }
- func ResetPassword() (password string) {
- m := md5.New()
- m.Write([]byte(defaultPassword))
- mStr := hex.EncodeToString(m.Sum(nil))
- password = GeneratePassword(mStr)
- return
- }
- func GenerateLoginToken(id int32) (token string) {
- m := md5.New()
- m.Write([]byte(fmt.Sprintf("%d%s", id, saltPassword)))
- token = hex.EncodeToString(m.Sum(nil))
- return
- }
|