文件名称:meteor-crypto-hmac:来自 CryptoJS 的 HMAC(keyed-hash 消息身份验证代码)为 Meteor 重新打包
文件大小:4KB
文件格式:ZIP
更新时间:2024-07-30 15:08:31
JavaScript
来自 (基于哈希的消息认证代码)函数,为 Meteor 打包。 依赖 。 安装 在您的项目文件夹中运行 $ meteor add jparker:crypto-hmac 您还需要为要使用的哈希函数安装软件包,例如 MD5 ( ) 或 SHA1 ( )。 一旦你安装了jparker:crypto-hmac ,你安装的任何crypto-*哈希函数包都会在CryptoJS命名空间下提供相应的方法。 用法 var hash = CryptoJS.HmacMD5('Message', 'Secret Passphrase').toString(); // '5e03d0c1b42ef0b7e61fb333f3993949' var hash = CryptoJS.HmacSHA1('Message', 'Secret Passphrase').toString(); var hash =
【文件预览】:
meteor-crypto-hmac-master
----.gitignore(8B)
----package.js(717B)
----.travis.yml(173B)
----README.md(2KB)
----tests()
--------tests.js(2KB)
----versions.json(258B)
----lib()
--------hmac.js(4KB)