文件名称:meteor-crypto-base64:CryptoJS 的 Base64 编码和解码,为 Meteor 重新打包
文件大小:4KB
文件格式:ZIP
更新时间:2024-07-30 14:51:33
JavaScript
来自编码和解码。 依赖 。 安装 在您的项目文件夹中运行 $ meteor add jparker:crypto-base64 CryptoJS命名空间下的以下方法现在将在客户端和服务器上可用: var words = CryptoJS.enc.Base64.parse('SGVsbG8sIFdvcmxkIQ=='); var base64 = CryptoJS.enc.Base64.stringify(words); 用法 Base64 编码一个文字字符串: CryptoJS . enc . Base64 . stringify ( CryptoJS . enc . Utf8 . parse ( 'Hello, World!' ) ) ; // "SGVsbG8sIFdvcmxkIQ==" 请注意,Base64 编码是在字节数组上完成的,而不是字符数组(即字符串)。 字符串
【文件预览】:
meteor-crypto-base64-master
----versions.json(258B)
----lib()
--------enc-base64.js(3KB)
----.travis.yml(173B)
----package.js(651B)
----README.md(2KB)
----tests()
--------tests.js(3KB)
----.gitignore(8B)