AES.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import CryptoJS from "crypto-js";
  2. const key = CryptoJS.enc.Utf8.parse("1234567890000000"); //16位
  3. const iv = CryptoJS.enc.Utf8.parse("1234567890000000");
  4. export default {
  5. //aes加密
  6. encrypt(word) {
  7. let encrypted = "";
  8. if (typeof word == "string") {
  9. const srcs = CryptoJS.enc.Utf8.parse(word);
  10. encrypted = CryptoJS.AES.encrypt(srcs, key, {
  11. iv: iv,
  12. mode: CryptoJS.mode.CBC,
  13. padding: CryptoJS.pad.Pkcs7
  14. });
  15. } else if (typeof word == "object") {
  16. //对象格式的转成json字符串
  17. const data = JSON.stringify(word);
  18. const srcs = CryptoJS.enc.Utf8.parse(data);
  19. encrypted = CryptoJS.AES.encrypt(srcs, key, {
  20. iv: iv,
  21. mode: CryptoJS.mode.CBC,
  22. padding: CryptoJS.pad.Pkcs7
  23. });
  24. }
  25. return encrypted.ciphertext.toString();
  26. },
  27. // aes解密
  28. decrypt(word) {
  29. const encryptedHexStr = CryptoJS.enc.Hex.parse(word);
  30. const srcs = CryptoJS.enc.Base64.stringify(encryptedHexStr);
  31. const decrypt = CryptoJS.AES.decrypt(srcs, key, {
  32. iv: iv,
  33. mode: CryptoJS.mode.CBC,
  34. padding: CryptoJS.pad.Pkcs7
  35. });
  36. const decryptedStr = decrypt.toString(CryptoJS.enc.Utf8);
  37. return decryptedStr.toString();
  38. }
  39. };