Browse Source

登录密码非对称加密

xu 11 months ago
parent
commit
a757876504
3 changed files with 20 additions and 2 deletions
  1. 12 0
      server/api/v1/system/sys_user.go
  2. 1 0
      server/router/system/sys_base.go
  3. 7 2
      server/utils/rsa.go

+ 12 - 0
server/api/v1/system/sys_user.go

@@ -17,6 +17,14 @@ import (
 	"go.uber.org/zap"
 )
 
+// 框架自带的登录无加密 返回公钥
+
+func (b *BaseApi) ReturnPublicKey(c *gin.Context) {
+	rsa := utils.RSA{}
+	publicKey := rsa.ReturnPublicKey()
+	response.OkWithData(gin.H{"publicKey": publicKey}, c)
+}
+
 // Login
 // @Tags     Base
 // @Summary  用户登录
@@ -49,6 +57,10 @@ func (b *BaseApi) Login(c *gin.Context) {
 
 	var oc bool = openCaptcha == 0 || openCaptcha < interfaceToInt(v)
 
+	//解密
+	rsa := utils.RSA{}
+	l.Password = rsa.Encryption(l.Password)
+
 	if !oc || (l.CaptchaId != "" && l.Captcha != "" && store.Verify(l.CaptchaId, l.Captcha, true)) {
 		u := &system.SysUser{Username: l.Username, Password: l.Password}
 		user, err := userService.Login(u)

+ 1 - 0
server/router/system/sys_base.go

@@ -13,6 +13,7 @@ func (s *BaseRouter) InitBaseRouter(Router *gin.RouterGroup) (R gin.IRoutes) {
 	{
 		baseRouter.POST("login", baseApi.Login)
 		baseRouter.POST("captcha", baseApi.Captcha)
+		baseRouter.GET("routerPublicKey", baseApi.ReturnPublicKey) //返回公钥
 	}
 	return baseRouter
 }

+ 7 - 2
server/utils/rsa.go

@@ -9,11 +9,15 @@ import (
 	"fmt"
 )
 
+type RSA struct {
+}
+
 // 创建私钥
 var privateKey, _ = rsa.GenerateKey(rand.Reader, 2048)
 
 // 私钥解密
-func encryption(password string) string {
+
+func (r *RSA) Encryption(password string) string {
 
 	encrypted, _ := base64.StdEncoding.DecodeString(password)
 
@@ -26,7 +30,8 @@ func encryption(password string) string {
 }
 
 // 返回公钥
-func returnPublicKey() string {
+
+func (r *RSA) ReturnPublicKey() string {
 	publicKey := &privateKey.PublicKey
 	publicKeyDer, err := x509.MarshalPKIXPublicKey(publicKey)
 	if err != nil {