• 若依(RuoYi)SpringBoot框架密码加密传输(前后分离板)


    运行环境:

    Java 版本 1.8

    Spring Boot 版本: 2.2.13.RELEASE


    目前登录接口密码是明文传输 为了更高安全性 我准备调整为加密方式传输( 这里选择Rsa加密算法) 并分享下编写过程

    更改前

    更改后

    大概加密流程:

    1. 后台生成随机公钥私钥
    2. 前台拿到公钥集成jsencrypt实现密码加密
    3. 传输加密后的密码给后台
    4. 后台通过私钥对加密后的密码进行解密

    若依详细登陆流程<<<可以看这里

    若依官方的加密方法<<<原本是固定公私秘钥 我改为了随机生成

    篇幅过长『请』耐心看完哦?? 有什么问题可以联系我~

    目录

    运行环境:

    大概加密流程:

    后台改动

    首先新建RsaUtils类

    在controller层添加获取公钥接口

    登录方法SysLoginService类修改(重点)

    重置密码接口要也需要更改!!不要忘记啦

    最后在SecurityConfig类里添加白名单

    前端改动

    login.js添加获取公钥接口路径

    user.js更改登陆方法

    resetPwd.vue更改修改密码的页面

    JSEncrypt.js更改加解密方法


    后台改动

    首先新建RsaUtils类

    import org.apache.commons.codec.binary.Base64;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    import org.springframework.context.annotation.Bean;
    import org.springframework.stereotype.Component;
    
    import javax.crypto.Cipher;
    import java.security.*;
    import java.security.interfaces.RSAPrivateKey;
    import java.security.interfaces.RSAPublicKey;
    import java.security.spec.PKCS8EncodedKeySpec;
    import java.security.spec.X509EncodedKeySpec;
    
    @Component
    public class RsaUtils {
        // Rsa 私钥 也可固定秘钥对 若依原写法(不安全)
        public static String privateKeys = "";
        private static String publicKeyStr = "";
        private static String privateKeyStr = "";
        private static final RsaKeyPair rsaKeyPair = new RsaKeyPair();
        private static final Logger logger = LoggerFactory.getLogger(MapUtils.class);
    
        /**
         * 私钥解密
         *
         * @param text 待解密的文本
         * @return 解密后的文本
         */
        public static String decryptByPrivateKey(String text) throws Exception {
    //        logger.info(rsaKeyPair.getPrivateKey());
            return decryptByPrivateKey(rsaKeyPair.getPrivateKey(), text);
        }
    
        /**
         * 公钥解密
         *
         * @param publicKeyString 公钥
         * @param text            待解密的信息
         * @return 解密后的文本
         */
        public static String decryptByPublicKey(String publicKeyString, String text) throws Exception {
            X509EncodedKeySpec x509EncodedKeySpec = new X509EncodedKeySpec(Base64.decodeBase64(publicKeyString));
            KeyFactory keyFactory = KeyFactory.getInstance("RSA");
            PublicKey publicKey = keyFactory.generatePublic(x509EncodedKeySpec);
            Cipher cipher = Cipher.getInstance("RSA");
            cipher.init(Cipher.DECRYPT_MODE, publicKey);
            byte[] result = cipher.doFinal(Base64.decodeBase64(text));
            return new String(result);
        }
    
        /**
         * 私钥加密
         *
         * @param privateKeyString 私钥
         * @param text             待加密的信息
         * @return 加密后的文本
         */
        public static String encryptByPrivateKey(String privateKeyString, String text) throws Exception {
            PKCS8EncodedKeySpec pkcs8EncodedKeySpec = new PKCS8EncodedKeySpec(Base64.decodeBase64(privateKeyString));
            KeyFactory keyFactory = KeyFactory.getInstance("RSA");
            PrivateKey privateKey = keyFactory.generatePrivate(pkcs8EncodedKeySpec);
            Cipher cipher = Cipher.getInstance("RSA");
            cipher.init(Cipher.ENCRYPT_MODE, privateKey);
            byte[] result = cipher.doFinal(text.getBytes());
            return Base64.encodeBase64String(result);
        }
    
        /**
         * 私钥解密
         *
         * @param privateKeyString 私钥
         * @param text             待解密的文本
         * @return 解密后的文本
         */
        public static String decryptByPrivateKey(String privateKeyString, String text) throws Exception {
            PKCS8EncodedKeySpec pkcs8EncodedKeySpec5 = new PKCS8EncodedKeySpec(Base64.decodeBase64(privateKeyString));
            KeyFactory keyFactory = KeyFactory.getInstance("RSA");
            PrivateKey privateKey = keyFactory.generatePrivate(pkcs8EncodedKeySpec5);
            Cipher cipher = Cipher.getInstance("RSA");
            cipher.init(Cipher.DECRYPT_MODE, privateKey);
            byte[] result = cipher.doFinal(Base64.decodeBase64(text));
            return new String(result);
        }
    
        /**
         * 公钥加密
         *
         * @param publicKeyString 公钥
         * @param text            待加密的文本
         * @return 加密后的文本
         */
        public static String encryptByPublicKey(String publicKeyString, String text) throws Exception {
            X509EncodedKeySpec x509EncodedKeySpec2 = new X509EncodedKeySpec(Base64.decodeBase64(publicKeyString));
            KeyFactory keyFactory = KeyFactory.getInstance("RSA");
            PublicKey publicKey = keyFactory.generatePublic(x509EncodedKeySpec2);
            Cipher cipher = Cipher.getInstance("RSA");
            cipher.init(Cipher.ENCRYPT_MODE, publicKey);
            byte[] result = cipher.doFinal(text.getBytes());
            return Base64.encodeBase64String(result);
        }
    
        /**
         * 构建RSA密钥对
         *
         * @return 生成后的公私钥信息
         */
        @Bean
        public void generateKeyPair() throws NoSuchAlgorithmException, NoSuchProviderException {
            KeyPairGenerator keyPairGenerator = KeyPairGenerator.getInstance("RSA");
            keyPairGenerator.initialize(1024);
            KeyPair keyPair = keyPairGenerator.generateKeyPair();
            RSAPublicKey rsaPublicKey = (RSAPublicKey) keyPair.getPublic();
            RSAPrivateKey rsaPrivateKey = (RSAPrivateKey) keyPair.getPrivate();
            String publicKeyString = Base64.encodeBase64String(rsaPublicKey.getEncoded());
            String privateKeyString = Base64.encodeBase64String(rsaPrivateKey.getEncoded());
            rsaKeyPair.setPrivateKey(privateKeyString);
            rsaKeyPair.setPublicKey(publicKeyString);
            publicKeyStr = publicKeyString;
            privateKeyStr = privateKeyString;
        }
    
    
        public static String getPublicKey() {
            return publicKeyStr;
        }
    
        public static String getPrivateKey() {
            return privateKeyStr;
        }
    
        public static RsaKeyPair rsaKeyPair() {
            return rsaKeyPair;
        }
    
        /**
         * RSA密钥对对象
         */
        public static class RsaKeyPair {
            private String publicKey;
            private String privateKey;
    
            public void setPublicKey(String publicKey) {
                this.publicKey = publicKey;
            }
    
            public void setPrivateKey(String privateKey) {
                this.privateKey = privateKey;
            }
    
            public RsaKeyPair() {
    
            }
    
            public RsaKeyPair(String publicKey, String privateKey) {
                this.publicKey = publicKey;
                this.privateKey = privateKey;
            }
    
            public String getPublicKey() {
                return publicKey;
            }
    
            public String getPrivateKey() {
                return privateKey;
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167

    RsaUtils添加了@Component注解 generateKeyPair()构建密钥对添加了@Bean注解 在项目启动时通过@Bean的方式将普通类事例化到spring容器中 所以在系统启动后 每次调用接口会是一样的公私秘钥 每次重启后公私钥不同

    在controller层添加获取公钥接口

        /**
         * 获取公钥 前端用来密码加密
         *
         * @return
         */
        @GetMapping("/publicKey")
        public RsaUtils.RsaKeyPair publicKey() {
            //便于测试 公私秘钥都传了 可改为只传公钥
            //RsaUtils.RsaKeyPair rsaKeyPair = new RsaUtils.RsaKeyPair();
            //rsaKeyPair.setPublicKey(RsaUtils.getPublicKey());
            //return rsaKeyPair;
            return RsaUtils.rsaKeyPair();
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    登录方法SysLoginService类修改(重点)

    测试内部会调用authenticationManager.authenticate()对账号和密码做验证 具体细节推荐看原代码

    最终会调用UserDetailsServiceImpl.loadUserByUsername()方法 若依重写了此方法

    authentication = authenticationManager.authenticate(new UsernamePasswordAuthenticationToken(username, RsaUtils.decryptByPrivateKey(password)));
    
    • 1

    重置密码接口要也需要更改!!不要忘记啦

       /**
         * 重置密码
         */
        @Log(title = "个人信息", businessType = BusinessType.UPDATE)
        @PutMapping("/updatePwd")
        public AjaxResult updatePwd(String oldPassword, String newPassword) throws Exception {
            LoginUser loginUser = tokenService.getLoginUser(ServletUtils.getRequest());
            String userName = loginUser.getUsername();
            //加密后的
            String password = loginUser.getPassword();
            //解密
            oldPassword = RsaUtils.decryptByPrivateKey(oldPassword);
            newPassword = RsaUtils.decryptByPrivateKey(newPassword);
            //拿原密码和加密后的解密
            if (!SecurityUtils.matchesPassword(oldPassword, password)) {
                return AjaxResult.error("修改密码失败,旧密码错误");
            }
            if (SecurityUtils.matchesPassword(newPassword, password)) {
                return AjaxResult.error("新密码不能与旧密码相同");
            }
            if (userService.resetUserPwd(userName, SecurityUtils.encryptPassword(newPassword)) > 0) {
                // 更新缓存用户密码
                loginUser.getUser().setPassword(SecurityUtils.encryptPassword(newPassword));
                tokenService.setLoginUser(loginUser);
                return AjaxResult.success();
            }
            return AjaxResult.error("修改密码异常,请联系管理员");
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28

    最后在SecurityConfig类里添加白名单

    /**
      * anonymous() 允许匿名用户访问,不允许已登入用户访问
      * permitAll() 不管登入,不登入 都能访问
      */
      .antMatchers("/publicKey").permitAll()
    
    • 1
    • 2
    • 3
    • 4
    • 5

    anonymous()和permitAll()权限是个坑 大家注意

    至此后台工作已完成 挪步前端(没错 前后端都是我写的??)

    前端改动

    login.js添加获取公钥接口路径

    // 获取key
    export function getPublicKey() {
      return request({
        url: '/publicKey',
        method: 'get',
      })
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    user.js更改登陆方法

    actions: {
        getPublicKey() {
          return new Promise((resolve, reject) => {
            getPublicKey()
              .then(res => {
                resolve(res)
              })
              .catch(error => {
                reject(error)
              })
          })
        },
        // 登录
        Login({ commit, dispatch }, userInfo) {
          return new Promise((resolve, reject) => {
            dispatch('getPublicKey').then(res => {
              let publicKey = res.publicKey
              const username = userInfo.username.trim()
              //调用加密方法(传密码和公钥)
              const password = encrypt(userInfo.password, publicKey)
              const code = userInfo.code
              const uuid = userInfo.uuid
              login(username, password, code, uuid)
                .then(res => {
                  setToken(res.token)
                  commit('SET_TOKEN', res.token)
                  resolve()
                })
                .catch(error => {
                  reject(error)
                })
              })
          })
        },
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34

    resetPwd.vue更改修改密码的页面

    methods: {
        getPublicKey() {
          return new Promise((resolve, reject) => {
            getPublicKey()
              .then(res => {
                resolve(res)
              })
              .catch(error => {
                reject(error)
              })
          })
        },
          submit() {
          this.$refs["form"].validate(valid => {
            if (valid) {
              this.getPublicKey().then(res=>{
                let publicKey = res.publicKey
                console.log("res.publicKey",res.publicKey)
                const oldPassword = encrypt(this.user.oldPassword, publicKey)
                const newPassword = encrypt(this.user.newPassword, publicKey)
                updateUserPwd(oldPassword, newPassword).then(
                  response => {
                    this.msgSuccess("修改成功");
                  }
                );
              })
    
            }
          });
        },
        close() {
          this.$store.dispatch("tagsView/delView", this.$route);
          this.$router.push({ path: "/index" });
        }
      }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    JSEncrypt.js更改加解密方法

    import JSEncrypt from 'jsencrypt/bin/jsencrypt.min'
    
    // 密钥对生成 http://web.chacuo.net/netrsakeypair
    
    //这里注掉了原来固定的公私钥
    //const publicKey = ''
    //const privateKey = ''
    
    // 加密
    export function encrypt(txt, publicKey) {
      const encryptor = new JSEncrypt()
      encryptor.setPublicKey(publicKey) // 设置公钥
      return encryptor.encrypt(txt) // 对数据
    }
    
    // 解密(暂无使用)
    export function decrypt(txt) {
      const encryptor = new JSEncrypt()
      encryptor.setPrivateKey(privateKey) // 设置私钥
      return encryptor.decrypt(txt) // 对数据进行解密
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21

    登陆验证下吧~

    有问题欢迎留言讨论??

    先自我介绍一下,小编13年上师交大毕业,曾经在小公司待过,去过华为OPPO等大厂,18年进入阿里,直到现在。深知大多数初中级java工程师,想要升技能,往往是需要自己摸索成长或是报班学习,但对于培训机构动则近万元的学费,着实压力不小。自己不成体系的自学效率很低又漫长,而且容易碰到天花板技术停止不前。因此我收集了一份《java开发全套学习资料》送给大家,初衷也很简单,就是希望帮助到想自学又不知道该从何学起的朋友,同时减轻大家的负担。添加下方名片,即可获取全套学习资料哦

  • 相关阅读:
    解锁Spring Boot数据映射新利器:深度探索MapperStruct
    UE5编译报错:Error MSB3073
    CART算法解密:从原理到Python实现
    LinkedList详解-Deque接口链表实现方案
    Android 性能优化--APK加固(1)混淆
    【Git】一起来了解一下版本控制系统吧
    QT银行储蓄管理系统
    前端飞机大战小游戏
    读书-人生算法
    Python 共享内存与 Qt c++ 程序进程之间通信
  • 原文地址:https://blog.csdn.net/m0_67394006/article/details/126066868