1049731887/Panel

进入网站认证

Opened this issue · 1 comments

https://zhuanlan.zhihu.com/p/146098209?utm_id=0

AES简单加密
CryptoJS.AES.encrypt('待加密字符串', '秘钥').toString()

AES简单解密
CryptoJS.AES.decrypt('待解密字符串', '秘钥').toString(CryptoJS.enc.Utf8)

你可以下载CryptoJS( https://github.com/brix/crypto-js )到您本地,新建一个网页然后通过console.log()进行调试,可以使用一款接口管理工具ApiPost( https://www.apipost.cn/ )进行调试。

ApiPost是一款功能类似Postman的工具,但是融入了文档分享功能,使用起来很方便。它内置了CryptoJS支持,所以我就以它作为调试工具了。