当前位置:   article > 正文

前端登录密码加密方法(后端node.js)_登录器如何加密

登录器如何加密

项目中有遇到,做个记录

1. npm安装crypto-js

 npm i crypto-js -S
  • 1

2.引入该资源

 import CryptoJS from 'crypto-js';
  • 1

3.加密方法

   /**
   * @method encryptPassword 密码加密
   * @param password 原始密码
   */
    encryptPassword(password: string): string {
    let key = "2b7e151628aed2a6abf7158809cf4f3c"
    let encrypted = CryptoJS.AES.encrypt(password, key).toString();
    return encrypted;
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

4.解密方法

   /**
   * @method decryptPassword 密码解密
   * @param password 加密后密码
   */
decryptPassword(password: string): string {
    const decrypted = CryptoJS.AES.decrypt(password,this.config.key).toString(CryptoJS.enc.Utf8);
    return decrypted;
  }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/581713
推荐阅读
相关标签
  

闽ICP备14008679号