完成基本框架搭建及系统用户登录流程

This commit is contained in:
2025-08-28 17:24:32 +08:00
parent 5a8029b3c6
commit 0a3be6cf9e
22 changed files with 736 additions and 16 deletions

22
pkg/encrypt/sha256.go Normal file
View File

@@ -0,0 +1,22 @@
package encrypt
import (
"crypto/sha256"
"encoding/hex"
)
// @Author: yv1ing
// @Author: me@yvling.cn
// @Date: 2025/8/28 17:15
// @Desc: 计算Sha256哈希值
func Sha256String(text, salt string) string {
textBytes := []byte(text)
saltBytes := []byte(salt)
hash := sha256.New()
hash.Write(textBytes)
hash.Write(saltBytes)
return hex.EncodeToString(hash.Sum(nil))
}