Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

xxtea_ts

chenhongshu1.6kISC1.0.7TypeScript support: included

工具:提供了与 Cocos Creator 相同的加密、压缩的方法。可以很方便地将 js 压缩、加密回 jsc,针对 Uint8Array 类型数据进行加密的。

xxtea, encrypt, decrypt

readme

xxtea_ts

可以在ts中导入使用

安装

  npm install xxtea

Usage

import * as xxtea from "xxtea_ts"
var key  = 'yourkey';
xxtea.encrypt('data', key);
xxtea.decrypt(encrypted, key);