0、前言

很多情况下,API都存在安全性问题,而token验证又不能很好的解决安全隐患(抓包可破),所以一般情况下都推荐使用数据加密的方式。
前端的数据加密方式,一般都会选择:AES加密算法。

1、安装CryptoJS包

使用以下命令安装AES的算法包
npm install crypto-js --save-dev

2、修改我们的全局常量文件

  1. // 全局常量定义
  2. // v1.0.1
  3. // 引入ajax包
  4. import axios from 'axios'
  5. // 设置ajax请求地址,解决跨域问题
  6. const isPro = Object.is(process.env.NODE_ENV, 'production')
  7. // 左为生产环境,右为测试环境
  8. // const baseUrl = isPro ? 'http://juncms.zgnyw.xin/api/' : 'api/';
  9. // 如果你的接口与项目不是同一域名下,可直接将baseUrl设置为对应的接口地址即可,例如:
  10. const baseUrl = 'http://juncms.zgnyw.xin/';
  11. axios.defaults.baseURL = baseUrl;
  12. // 引入qs包
  13. import qs from 'qs'
  14. // 引入CryptoJS包
  15. import CryptoJS from 'crypto-js'
  16. // AES加密密钥
  17. const aes_key = 'abcdefgabcdefg12';
  18. // AES加密
  19. const encrypt = function(word, keyStr) {
  20. keyStr = keyStr ? keyStr : aes_key;
  21. var key = CryptoJS.enc.Utf8.parse(keyStr);
  22. var srcs = CryptoJS.enc.Utf8.parse(word);
  23. var encrypted = CryptoJS.AES.encrypt(srcs, key, {mode:CryptoJS.mode.ECB,padding: CryptoJS.pad.Pkcs7});
  24. return encrypted.toString();
  25. }
  26. // AES解密
  27. const decrypt = function(word, keyStr){
  28. keyStr = keyStr ? keyStr : aes_key;
  29. var key = CryptoJS.enc.Utf8.parse(keyStr);
  30. var decrypt = CryptoJS.AES.decrypt(word, key, {mode:CryptoJS.mode.ECB,padding: CryptoJS.pad.Pkcs7});
  31. return CryptoJS.enc.Utf8.stringify(decrypt).toString();
  32. }
  33. // 常量表
  34. const config = {
  35. // ajax插件
  36. axios:axios,
  37. // qs插件
  38. qs:qs,
  39. // AES加密
  40. encrypt:encrypt,
  41. // AES解密
  42. decrypt:decrypt,
  43. // 版本号
  44. edition:'v1.0.1',
  45. // 项目名称
  46. entry_name:'Vue2测试项目'
  47. }
  48. // 常量定义函数
  49. let bindToGlobal = (obj, key) => {
  50. if (typeof window[key] === 'undefined') {
  51. window[key] = {};
  52. }
  53. for (let i in obj) {
  54. window[key][i] = obj[i]
  55. }
  56. }
  57. bindToGlobal(config,'_config')

3、.vue模板中的使用案例

  1. <template>
  2. <div id="app">
  3. <button v-on:click="submit">测试</button>
  4. </div>
  5. </template>
  6. <script>
  7. import Vue from 'vue'
  8. import '../global.js'
  9. export default {
  10. methods: {
  11. submit: function(event) {
  12. console.log(_config.encrypt('欢迎光临'));
  13. console.log(_config.decrypt(_config.encrypt('欢迎光临')));
  14. }
  15. }
  16. }
  17. </script>

4、PHP后端AES的实现

  1. <?php
  2. class Aes {
  3. /**
  4. * 加解密方法,可通过openssl_get_cipher_methods()获得
  5. */
  6. protected $method;
  7. /**
  8. * 加解密的密钥
  9. */
  10. protected $secret_key;
  11. /**
  12. * 加解密的向量值,不一定需要
  13. */
  14. protected $iv;
  15. /**
  16. * 构造函数
  17. * @param string $key 密钥
  18. * @param string $method 加密方式
  19. * @param string $iv iv向量
  20. */
  21. public function __construct($key, $method = 'AES-128-ECB', $iv = '') {
  22. $this->secret_key = $key;
  23. $this->method = $method;
  24. $this->iv = $iv;
  25. }
  26. /**
  27. * 加密方法,对数据进行加密,返回加密后的数据
  28. * @param string $data 要加密的数据
  29. * @return string
  30. */
  31. public function encrypt($data) {
  32. return openssl_encrypt($data, $this->method, $this->secret_key, 0, $this->iv);
  33. }
  34. /**
  35. * 解密方法,对数据进行解密,返回解密后的数据
  36. * @param string $data 要解密的数据
  37. * @return string
  38. */
  39. public function decrypt($data) {
  40. return openssl_decrypt($data, $this->method, $this->secret_key, 0, $this->iv);
  41. }
  42. }
  43. # 使用demo如下:
  44. $aes = new Aes('abcdefgabcdefg12');
  45. # 加密
  46. $encrypted = $aes->encrypt('欢迎光临');
  47. echo '加密后得到的字符串:'.$encrypted.'<hr>';
  48. # 解密
  49. $decrypted = $aes->decrypt('YV9ZmcYqoinX2QDpidEjww==');
  50. echo '解密后得到的字符串:'.$decrypted;