Browse Source

[Mod 0000] 局部风机样式调整

hongrunxia 1 month ago
parent
commit
2014e2a92b
3 changed files with 19 additions and 8 deletions
  1. 3 6
      src/store/modules/user.ts
  2. 2 2
      src/utils/cipher.ts
  3. 14 0
      src/utils/ventutil.ts

+ 3 - 6
src/store/modules/user.ts

@@ -20,8 +20,7 @@ import { RoleEnum } from '/@/enums/roleEnum';
 import { useSso } from '/@/hooks/web/useSso';
 import { getActions } from '/@/qiankun/state';
 import { MOCK_LOGIN_PASSWORD, MOCK_LOGIN_UESRNAME } from '../constant';
-import { AesEncryption } from '/@/utils/cipher';
-import { loginCipher } from '/@/settings/encryptionSetting';
+import { encrypt } from '/@/utils/ventutil';
 
 interface UserState {
   userInfo: Nullable<UserInfo>;
@@ -149,8 +148,7 @@ export const useUserStore = defineStore({
       try {
         const { goHome = true, mode, successMode, ...loginParams } = params;
         // 进行加密
-        const encryption = new AesEncryption({ key: loginCipher.key, iv: loginCipher.iv });
-        // loginParams.password = encryption.encryptByAES(loginParams.password);
+        const { key, iv, encryptData } = await encrypt(loginParams.password);
         const data = await loginApi(loginParams, mode, successMode);
         const { token, userInfo } = data;
         // save token
@@ -417,8 +415,7 @@ export const useUserStore = defineStore({
     ) {
       const { goHome = true, mode, successMode = 'none', ...loginParams } = params;
       // 进行加密
-      // const encryption = new AesEncryption({ key: loginCipher.key, iv: loginCipher.iv });
-      // loginParams.password = encryption.encryptByAES(loginParams.password);
+      // const { key, iv, encryptData } = await encrypt(loginParams.password);
       const data = await autoLoginApi(loginParams, mode, successMode);
       const { token, userInfo } = data;
       // save token

+ 2 - 2
src/utils/cipher.ts

@@ -12,8 +12,8 @@ export interface EncryptionParams {
 }
 
 export class AesEncryption {
-  private key;
-  private iv;
+  key;
+  iv;
 
   constructor(opt: Partial<EncryptionParams> = {}) {
     const { key, iv } = opt;

+ 14 - 0
src/utils/ventutil.ts

@@ -277,3 +277,17 @@ export const get: typeof _.get = (o, p, defaultValue = '-') => {
   const d = _.get(o, p, defaultValue);
   return d === null ? defaultValue : d;
 };
+
+export async function encrypt(data) {
+  const encodedData = new TextEncoder().encode(data);
+  const key = await window.crypto.subtle.generateKey({ name: 'AES-GCM', length: 256 }, true, ['encrypt', 'decrypt']);
+  const iv = window.crypto.getRandomValues(new Uint8Array(12));
+  const encryptedData = await window.crypto.subtle.encrypt({ name: 'AES-GCM', iv: iv }, key, encodedData);
+
+  // 将密钥、IV和加密数据转换为Base64以便传输
+  return {
+    key: btoa(String.fromCharCode.apply(null, new Uint8Array(await window.crypto.subtle.exportKey('raw', key)))),
+    iv: btoa(String.fromCharCode.apply(null, iv)),
+    encryptData: btoa(String.fromCharCode.apply(null, new Uint8Array(encryptedData))),
+  };
+}