前端加密

使用crypto-js加解密

第一步,安装

  1. npm install crypto-js

第二步,在你需要的vue组件内import

  1. import CryptoJS from "crypto-js";

第三步,使用

  1. // Encrypt 加密
  2. var cipherText = CryptoJS.AES.encrypt(
  3. "my message",
  4. "secretkey123"
  5. ).toString();
  6. console.log(cipherText)
  7. // Decrypt 解密
  8. var bytes = CryptoJS.AES.decrypt(cipherText, "secretkey123");
  9. var originalText = bytes.toString(CryptoJS.enc.Utf8);
  10. console.log(originalText); // 'my message'

注意这个mymessage是字符串,如果你要加密的用户id(number类型)得先转成字符串
更多使用请访问官方文档

记住密码

  1. 实现原理是登录的时候,如果勾选了记住密码(把‘记住密码’状态保存到localstorage)就保存账号密码到cookies;
  2. 之后进入登录页面的时候,判断是否记住了密码(从localstorage判断),如果记住密码则导出cookies到表单;

其中保存使用setcookie方法,取出则使用getcookie方法。
ok,我们来编写方法

  1. //设置cookie
  2. setCookie(portId, psw, exdays) {
  3. // Encrypt,加密账号密码
  4. var cipherPortId = CryptoJS.AES.encrypt(
  5. portId+'',
  6. "secretkey123"
  7. ).toString();
  8. var cipherPsw = CryptoJS.AES.encrypt(psw+'', "secretkey123").toString();
  9. console.log(cipherPortId+'/'+cipherPsw)//打印一下看看有没有加密成功
  10. var exdate = new Date(); //获取时间
  11. exdate.setTime(exdate.getTime() + 24 * 60 * 60 * 1000 * exdays); //保存的天数
  12. //字符串拼接cookie,为什么这里用了==,因为加密后的字符串也有个=号,影响下面getcookie的字符串切割,你也可以使用更炫酷的符号。
  13. window.document.cookie =
  14. "currentPortId" +
  15. "==" +
  16. cipherPortId +
  17. ";path=/;expires=" +
  18. exdate.toGMTString();
  19. window.document.cookie =
  20. "password" +
  21. "==" +
  22. cipherPsw +
  23. ";path=/;expires=" +
  24. exdate.toGMTString();
  25. },
  26. //读取cookie
  27. getCookie: function() {
  28. if (document.cookie.length > 0) {
  29. var arr = document.cookie.split("; "); //这里显示的格式请根据自己的代码更改
  30. for (var i = 0; i < arr.length; i++) {
  31. var arr2 = arr[i].split("=="); //根据==切割
  32. //判断查找相对应的值
  33. if (arr2[0] == "currentPortId") {
  34. // Decrypt,将解密后的内容赋值给账号
  35. var bytes = CryptoJS.AES.decrypt(arr2[1], "secretkey123");
  36. this.currentPortId = bytes.toString(CryptoJS.enc.Utf8)-0;
  37. } else if (arr2[0] == "password") {
  38. // Decrypt,将解密后的内容赋值给密码
  39. var bytes = CryptoJS.AES.decrypt(arr2[1], "secretkey123");
  40. this.password = bytes.toString(CryptoJS.enc.Utf8);
  41. }
  42. }
  43. }
  44. },
  45. //清除cookie
  46. clearCookie: function() {
  47. this.setCookie("", "", -1);
  48. }

登录的方法如下:

  1. login() {
  2. this.$http //请根据实际情况修改该方法
  3. .post(...)
  4. .then(res => {
  5. if (res.data.code == "success") {
  6. if (this.rememberPsw == true) {
  7. //判断用户是否勾选了记住密码选项rememberPsw,传入保存的账号currentPortId,密码password,天数30
  8. this.setCookie(this.currentPortId, this.password, 30);
  9. }else{
  10. this.clearCookie();
  11. }
  12. //这里是因为要在created中判断,所以使用了localstorage比较简单,当然你也可以直接根据cookie的长度or其他骚操作来判断有没有记住密码。
  13. localStorage.setItem("rememberPsw", this.rememberPsw);
  14. } else {
  15. //----
  16. }
  17. })
  18. .catch(err => {
  19. //----
  20. });
  21. },

最后要在created狗子函数内判断用户是否记住了密码来执行相关的操作

  1. //判断是否记住密码
  2. //**注意这里的true是字符串格式,因为Boolean存进localstorage中会变成String**
  3. created() {
  4. //判断是否记住密码
  5. if (localStorage.getItem("rememberPsw") == 'true') {
  6. this.getCookie();
  7. }
  8. }

最后,界面贴上,其中rememberPsw是记住密码按钮的v-model值,currentPortId是第一个框的v-model值,password就是第二个框的v-model值啦。
6.vue实现记住密码 - 图1