hexo-helper-crypto
v1.2.1
Published
A Hexo helper for encryption and decryption using CryptoJS.
Downloads
136
Maintainers
Readme
Hexo-Helper-Crypto
Hexo-Helper-Crypto 插件,用于在模板文件内加/解密数据,使用 CryptoJS。
1. 安装
pnpm add hexo-helper-crypto
2. 使用
在模板文件(以下使用 EJS 模板引擎)中,添加:
<% const CryptoJS = getCryptoJS(); %>
然后可以直接使用 CryptoJS
,和 CryptoJS 接口一样。
以下例子获取了页面标题的 SHA256 值,并用 Base64 编码。
<% const CryptoJS = getCryptoJS(); %>
<%= CryptoJS.SHA256(page.title).toString(CryptoJS.enc.Base64) %>