From e14d42d75cc3621ed17ba3d12b1870331f219db3 Mon Sep 17 00:00:00 2001 From: chuan_wuhao <443547225@qq.com> Date: Fri, 12 Aug 2022 18:18:15 +0800 Subject: [PATCH] backup code --- .env.test | 2 ++ src/utils/crypto.ts | 29 +++++++++++++++++++++++++++++ vite-plugin/index.ts | 2 +- 3 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 .env.test diff --git a/.env.test b/.env.test new file mode 100644 index 00000000..33aabb6a --- /dev/null +++ b/.env.test @@ -0,0 +1,2 @@ +#测试环境 +NODE_ENV = 'test' \ No newline at end of file diff --git a/src/utils/crypto.ts b/src/utils/crypto.ts index 94fefd50..ea6b7666 100644 --- a/src/utils/crypto.ts +++ b/src/utils/crypto.ts @@ -2,6 +2,7 @@ import HmacSHA256 from 'crypto-js/hmac-sha256' import SHA256 from 'crypto-js/sha256' import AES from 'crypto-js/aes' import MD5 from 'crypto-js/md5' +import BASE64 from 'crypto-js/enc-base64' /** * @@ -89,3 +90,31 @@ export const useMD5 = (message: WordArray | string, cfg?: object) => { resolve(cry) }) } + +/** + * + * @param wordArray 待转为 base64 信息 + * + * base64 加密 + */ +export const useBase64Stringify = (wordArray: WordArray) => { + return new Promise((resolve) => { + const cry = BASE64.stringify(wordArray) + + resolve(cry) + }) +} + +/** + * + * @param str 待转为 base64 信息 + * + * base64 解密 + */ +export const useBase64Parse = (str: string) => { + return new Promise((resolve) => { + const cry = BASE64.parse(str) + + resolve(cry) + }) +} diff --git a/vite-plugin/index.ts b/vite-plugin/index.ts index 6692e4b6..099810ac 100644 --- a/vite-plugin/index.ts +++ b/vite-plugin/index.ts @@ -152,7 +152,7 @@ export const useViteBuildPlugin = (options?: BuildOptions) => { const defaultPlugin: BuildOptions = { outDir: 'dist', // 打包后文件输出路径 assetsDir: 'assets', // 指定静态资源存放路径 - assetsInlineLimit: 4096, + assetsInlineLimit: 4096, // 小于这个数字(字节)的静态资产文件将被内联为(base64) cssCodeSplit: true, // 拆分css代码 minify: 'esbuild', // 指定使用混淆器(terser|esbuild) sourcemap: false,