You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
71 lines
1.6 KiB
11 months ago
|
import CryptoJS from 'crypto-js';
|
||
|
|
||
|
function randomUUID() {
|
||
|
const chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split('');
|
||
|
const uuid = new Array(36);
|
||
|
let rnd = 0;
|
||
|
let r: number;
|
||
|
for (let i = 0; i < 36; i++) {
|
||
|
if (i === 8 || i === 13 || i == 18 || i == 23) {
|
||
|
uuid[i] = '-';
|
||
|
} else if (i === 14) {
|
||
|
uuid[i] = '4';
|
||
|
} else {
|
||
|
if (rnd <= 0x02) rnd = (0x2000000 + Math.random() * 0x1000000) | 0;
|
||
|
r = rnd & 0xf;
|
||
|
rnd = rnd >> 4;
|
||
|
uuid[i] = chars[i == 19 ? (r & 0x3) | 0x8 : r];
|
||
|
}
|
||
|
}
|
||
|
return uuid.join('').replace(/-/gm, '').toLowerCase();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 随机生成aes 密钥
|
||
|
* @returns
|
||
|
*/
|
||
|
export function generateAesKey() {
|
||
|
return CryptoJS.enc.Utf8.parse(randomUUID());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* base64编码
|
||
|
* @param str
|
||
|
* @returns
|
||
|
*/
|
||
|
export function encryptBase64(str: CryptoJS.lib.WordArray) {
|
||
|
return CryptoJS.enc.Base64.stringify(str);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 使用公钥加密
|
||
|
* @param message 加密内容
|
||
|
* @param aesKey aesKey
|
||
|
* @returns
|
||
|
*/
|
||
|
export function encryptWithAes(message: string, aesKey: CryptoJS.lib.WordArray) {
|
||
|
const encrypted = CryptoJS.AES.encrypt(message, aesKey, {
|
||
|
mode: CryptoJS.mode.ECB,
|
||
|
padding: CryptoJS.pad.Pkcs7,
|
||
|
});
|
||
|
return encrypted.toString();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 解密base64
|
||
|
*/
|
||
|
export function decryptBase64(str: string) {
|
||
|
return CryptoJS.enc.Base64.parse(str);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 使用密钥对数据进行解密
|
||
|
*/
|
||
|
export function decryptWithAes(message: string, aesKey: CryptoJS.lib.WordArray) {
|
||
|
const decrypted = CryptoJS.AES.decrypt(message, aesKey, {
|
||
|
mode: CryptoJS.mode.ECB,
|
||
|
padding: CryptoJS.pad.Pkcs7,
|
||
|
});
|
||
|
return decrypted.toString(CryptoJS.enc.Utf8);
|
||
|
}
|