Compare commits
2 Commits
6bd7b57313
...
d05dcb286f
Author | SHA1 | Date |
---|---|---|
|
d05dcb286f | |
|
8ca149f002 |
|
@ -881,20 +881,14 @@ func (s *Service) OpResetMobilePhone(ctx *gin.Context, req *loginproto.OpResetMo
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// 2.计算AES和phoneHash
|
// 2.计算phoneHash
|
||||||
aesStr, err := mycrypto.CryptoServiceInstance().AES.Encrypt([]byte(req.NewMobilePhone))
|
|
||||||
if err != nil {
|
|
||||||
logger.Error("AES Encrypt failed : %v", err)
|
|
||||||
ec = errcode.ErrCodeEncryptionInterceptFail
|
|
||||||
return
|
|
||||||
}
|
|
||||||
phoneHash := mycrypto.CryptoServiceInstance().SHA256.Encrypt([]byte(req.NewMobilePhone))
|
phoneHash := mycrypto.CryptoServiceInstance().SHA256.Encrypt([]byte(req.NewMobilePhone))
|
||||||
|
|
||||||
// 3.更新account表
|
// 3.更新account表
|
||||||
if err := _DefaultAccount.OpUpdate(ctx, &accountproto.OpUpdateReq{
|
if err := _DefaultAccount.OpUpdate(ctx, &accountproto.OpUpdateReq{
|
||||||
Account: &dbstruct.Account{
|
Account: &dbstruct.Account{
|
||||||
Mid: goproto.Int64(util.DerefInt64(login.Mid)),
|
Mid: goproto.Int64(util.DerefInt64(login.Mid)),
|
||||||
MobilePhone: goproto.String(string(aesStr)),
|
MobilePhone: goproto.String(req.NewMobilePhone),
|
||||||
PhoneHash: goproto.String(phoneHash),
|
PhoneHash: goproto.String(phoneHash),
|
||||||
},
|
},
|
||||||
}); err != nil {
|
}); err != nil {
|
||||||
|
|
Loading…
Reference in New Issue